]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - zone.h
implemented threaded audio mixing for SDL client (required some
[xonotic/darkplaces.git] / zone.h
diff --git a/zone.h b/zone.h
index a71916c01eb051eef386c07b26af1ed3b0573bbb..69d6f1b6d650297aed3a70e4d4445d18e56755d5 100644 (file)
--- a/zone.h
+++ b/zone.h
@@ -135,14 +135,7 @@ void _Mem_CheckSentinelsGlobal(const char *filename, int fileline);
 // if pool is NULL this searches ALL pools for the allocation
 qboolean Mem_IsAllocated(mempool_t *pool, void *data);
 
-static char* Mem_strdup (mempool_t *pool, const char* s)
-{
-       char* p;
-       if (s == NULL) return NULL;
-       p = (char*)Mem_Alloc (pool, strlen (s) + 1);
-       strcpy (p, s);
-       return p;
-}
+char* Mem_strdup (mempool_t *pool, const char* s);
 
 typedef struct memexpandablearray_array_s
 {