blob: 2133ed42e3254a7ff9b7b92aa2430b9c5b8fb550 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- xmalloc.c.orig 2004-07-11 22:34:48.681076912 +0200
+++ xmalloc.c 2004-07-11 22:34:57.150789320 +0200
@@ -6,8 +6,8 @@
#include <curses.h>
#include "sc.h"
-extern char *malloc();
-extern char *realloc();
+extern void *malloc(size_t size);
+extern void *realloc();
extern void free();
void fatal();
|