summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-03-02 19:36:09 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-03-02 19:36:09 +0000
commit0168240c5c9fb7b2f072b16c6937637eb7ba8b9f (patch)
treed9390576c38895c90a96885ab4e11e93a3804739 /src
parent490a8b83152a5c6bf79ef6e9805eabe6230c812e (diff)
removed extra _mesa_memset16() prototype
Diffstat (limited to 'src')
-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 741cdbf519..2f5c38f046 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -1,4 +1,4 @@
-/* $Id: imports.h,v 1.13 2003/03/01 01:50:21 brianp Exp $ */
+/* $Id: imports.h,v 1.14 2003/03/02 19:36:09 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -68,10 +68,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... */