Patch extensive use of malloc and alloca without <stdlib.h> and some other stuff that showed up in the build log. Still crashes in temacs but it's getting much farther.
11 lines
277 B
Text
11 lines
277 B
Text
$NetBSD: patch-lib-src_fakelisp_c,v 1.1 2011/12/24 17:07:07 dholland Exp $
|
|
|
|
- use standard headers
|
|
|
|
--- lib-src/fakelisp.c~ 1995-01-06 12:09:02.000000000 +0000
|
|
+++ lib-src/fakelisp.c
|
|
@@ -1,3 +1,4 @@
|
|
+#include <stdlib.h>
|
|
#include "fakelisp.h"
|
|
|
|
void *Lisp_Object_Table[4096];
|