summaryrefslogtreecommitdiff
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-02-19 08:12:31 -0700
committerBrian Paul <brianp@vmware.com>2010-02-19 08:12:31 -0700
commit2240ba10f30315410bcff77e372ee71664ac4453 (patch)
tree6fbdf46df8c5081cefafcf1ab88d58ad7bffd609 /src/mesa/main/imports.h
parente197de56cdb86835f1437688a9161cd909792d80 (diff)
mesa: replace old MEMSET macro with memset
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index c4e28df051..048ae912c9 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -71,9 +71,6 @@ extern "C" {
/** Free aligned memory */
#define ALIGN_FREE(PTR) _mesa_align_free(PTR)
-/** Set \p N bytes in \p DST to \p VAL */
-#define MEMSET( DST, VAL, N ) memset(DST, VAL, N)
-
/*@}*/