diff options
author | Brian Paul <[email protected]> | 2010-02-19 08:12:31 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-19 08:12:31 -0700 |
commit | 2240ba10f30315410bcff77e372ee71664ac4453 (patch) | |
tree | 6fbdf46df8c5081cefafcf1ab88d58ad7bffd609 /src/mesa/main/imports.h | |
parent | e197de56cdb86835f1437688a9161cd909792d80 (diff) |
mesa: replace old MEMSET macro with memset
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index c4e28df0513..048ae912c9d 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) - /*@}*/ |