blob: e381609011bbc8e4fc28f536d18825f63e1f14f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -3,19 +3,12 @@
* $Revision: 7.16 $
*/
+#include <stdlib.h>
#include <curses.h>
#include "sc.h"
-extern char *malloc();
-extern char *realloc();
-extern void free();
void fatal();
-#ifdef SYSV3
-extern void free();
-extern void exit();
-#endif
-
#define MAGIC (double)1234567890.12344
char *
|