summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2017-10-05 13:30:32 -0600
committerBrian Paul <[email protected]>2017-10-10 11:28:31 -0600
commit3c5664b78d39e2d13f156369f8114ebbe08d6fb7 (patch)
tree213e556a639fff2c7bfa67079cd0e9e9904dcea3 /src/mesa/main/imports.h
parentd670dd6b65d8b8b255ddcf0d83aa7dcb6a38f30b (diff)
mesa: move _mesa_exec_malloc/free() prototypes to their own header
Try to start removing things from the cluttered imports.h file. v2: add new header to Makefile.sources Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index ef7c378931e..a4964a34cca 100644
--- a/src/mesa/main/imports.h
+++ b/src/mesa/main/imports.h
@@ -318,13 +318,6 @@ extern void *
_mesa_align_realloc(void *oldBuffer, size_t oldSize, size_t newSize,
unsigned long alignment);
-extern void *
-_mesa_exec_malloc( GLuint size );
-
-extern void
-_mesa_exec_free( void *addr );
-
-
#ifdef HAVE___BUILTIN_POPCOUNT
#define _mesa_bitcount(i) __builtin_popcount(i)
#else