]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - warp/util.c
Integrate Warp Kit into the NetBSD build
[bsdgames-darwin.git] / warp / util.c
index 246f0de9874acb7d5d388b76adcb1a05e6afc432..4f5d2960f612befee4e363cd1b145736e1490b54 100644 (file)
@@ -97,7 +97,6 @@ safemalloc(size)
 MEM_SIZE size;
 {
     char *ptr;
-    char *malloc();
 
     ptr = malloc(size?size:1); /* malloc(0) is NASTY on our system */
     if (ptr != Nullch)