summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-03-02 19:35:51 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-03-02 19:35:51 +0000
commit6899598be890cc6546e9522767b804e3d342c188 (patch)
tree876a07390f93069dc1e1b4f3756bd0fc2a698274
parent88db8b061bd3e73c360f9a2d213b043482b5bbaa (diff)
removed extra _mesa_memset16() prototype
-rw-r--r--src/mesa/main/imports.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 7d6e545415a..7509b713860 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -1,4 +1,4 @@
-/* $Id: imports.h,v 1.8.2.2 2003/02/28 16:28:16 brianp Exp $ */
+/* $Id: imports.h,v 1.8.2.3 2003/03/02 19:35:51 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -49,10 +49,8 @@
#define MEMCPY( DST, SRC, BYTES) _mesa_memcpy(DST, SRC, BYTES)
#define MEMSET( DST, VAL, N ) _mesa_memset(DST, VAL, N)
-extern void _mesa_memset16( GLushort *dst, GLushort val, size_t n );
-#define MEMSET16( DST, VAL, N ) \
- _mesa_memset16( (GLushort *) (DST), (GLushort) (VAL), (size_t) (N) )
+#define MEMSET16( DST, VAL, N ) _mesa_memset16( (DST), (VAL), (size_t) (N) )
/* MACs and BeOS don't support static larger than 32kb, so... */