diff options
author | Kenneth Graunke <[email protected]> | 2010-02-18 23:51:00 -0800 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-02-19 09:18:57 -0500 |
commit | 26f8fad1456fdc2b352cea9d3b4c32cb5f6ae947 (patch) | |
tree | afc0b9a4ef89c348fe9ea4b3a3ef5a77f627c496 /src/mesa/main/imports.h | |
parent | c7ac486261ad30ef654f6d0b1608da4e8483cd40 (diff) |
Remove _mesa_memset in favor of plain memset.
This may break the SUNOS4 build, but it's no longer relevant.
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 8f13d518ea7..68d2043c916 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -74,7 +74,7 @@ extern "C" { /** Copy \p BYTES bytes from \p SRC into \p DST */ #define MEMCPY( DST, SRC, BYTES) memcpy(DST, SRC, BYTES) /** Set \p N bytes in \p DST to \p VAL */ -#define MEMSET( DST, VAL, N ) _mesa_memset(DST, VAL, N) +#define MEMSET( DST, VAL, N ) memset(DST, VAL, N) /*@}*/ @@ -544,9 +544,6 @@ extern void * _mesa_realloc( void *oldBuffer, size_t oldSize, size_t newSize ); extern void -_mesa_memset( void *dst, int val, size_t n ); - -extern void _mesa_memset16( unsigned short *dst, unsigned short val, size_t n ); extern void |