diff src/audio/SDL_audiomem.c @ 1336:3692456e7b0f

Use SDL_ prefixed versions of C library functions. FIXME: Change #include <stdlib.h> to #include "SDL_stdlib.h" Change #include <string.h> to #include "SDL_string.h" Make sure nothing else broke because of this...
author Sam Lantinga <slouken@libsdl.org>
date Tue, 07 Feb 2006 06:59:48 +0000
parents 450721ad5436
children 604d73db6802
line wrap: on
line diff
--- a/src/audio/SDL_audiomem.c	Mon Feb 06 17:28:04 2006 +0000
+++ b/src/audio/SDL_audiomem.c	Tue Feb 07 06:59:48 2006 +0000
@@ -52,7 +52,7 @@
 	/* Set the segment for deletion when it is detatched */
 	shmctl(semid, IPC_RMID, NULL);	/* Delets semid if shmat() fails */
 #else
-	chunk = malloc(size);
+	chunk = SDL_malloc(size);
 #endif
 	return((void *)chunk);
 }
@@ -62,6 +62,6 @@
 #ifdef FORK_HACK
 	shmdt(chunk);
 #else
-	free(chunk);
+	SDL_free(chunk);
 #endif
 }