Remove _mesa_memcpy in favor of plain memcpy.
[mesa.git] / src / mesa / main / bitset.h
index f2709abc9fd06cc5e1328cb5c6b7e089ea6efe4b..5463c0a3c9e8e5c294346e1c4d2eaa0e8a155222 100644 (file)
@@ -47,7 +47,7 @@
 
 /* bitset operations
  */
-#define BITSET_COPY(x, y) _mesa_memcpy( (x), (y), sizeof (x) )
+#define BITSET_COPY(x, y) memcpy( (x), (y), sizeof (x) )
 #define BITSET_EQUAL(x, y) (_mesa_memcmp( (x), (y), sizeof (x) ) == 0)
 #define BITSET_ZERO(x) _mesa_memset( (x), 0, sizeof (x) )
 #define BITSET_ONES(x) _mesa_memset( (x), 0xff, sizeof (x) )