pkgsrc/chat/icb/patches/patch-bm
christos 460bd4190f make this work on 64 bit platforms:
- fix warnings for missing prototypes
- use termios instead of sgtty (why doesn't this work on amd64?)
2008-12-17 02:19:59 +00:00

28 lines
706 B
Text

$NetBSD: patch-bm,v 1.3 2008/12/17 02:19:59 christos Exp $
--- tcl/stdlib.h.orig 1995-02-24 16:19:50.000000000 -0500
+++ tcl/stdlib.h 2008-12-16 20:30:23.000000000 -0500
@@ -41,10 +41,10 @@
*------------------
*/
-extern char * alloca();
-extern char * calloc();
-extern char * malloc();
-extern char * realloc();
+extern void * alloca();
+extern void * calloc();
+extern void * malloc();
+extern void * realloc();
extern void Mem_Bin();
extern char * Mem_CallerPC();
extern void Mem_DumpTrace();
@@ -142,7 +142,7 @@
extern void abort();
extern int atexit();
extern char * bsearch();
-extern exit();
+extern void exit();
extern char * getenv();
extern void qsort();
extern int rand();