summaryrefslogtreecommitdiffstats
path: root/warp/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'warp/util.c')
-rw-r--r--warp/util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/warp/util.c b/warp/util.c
index 246f0de9..4f5d2960 100644
--- a/warp/util.c
+++ b/warp/util.c
@@ -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)