30 lines
927 B
Plaintext
30 lines
927 B
Plaintext
--- src/frame.c
|
|
+++ src/frame.c Wed Oct 24 18:23:30 2001
|
|
@@ -22,6 +22,9 @@
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
+#ifdef STDC_HEADERS
|
|
+#include <stdlib.h>
|
|
+#endif
|
|
#include "lisp.h"
|
|
#include "charset.h"
|
|
#ifdef HAVE_X_WINDOWS
|
|
--- src/lisp.h
|
|
+++ src/lisp.h Wed Oct 24 18:24:06 2001
|
|
@@ -1954,12 +1954,11 @@
|
|
EXFUN (Fencode_coding_string, 3);
|
|
EXFUN (Fdecode_coding_string, 3);
|
|
extern Lisp_Object detect_coding_system P_ ((unsigned char *, int, int, int));
|
|
-Lisp_Object code_convert_string_norecord P_ ((Lisp_Object, Lisp_Object, int));
|
|
+extern Lisp_Object code_convert_string_norecord P_ ((Lisp_Object, Lisp_Object,
|
|
+ int));
|
|
extern void init_coding P_ ((void));
|
|
extern void init_coding_once P_ ((void));
|
|
extern void syms_of_coding P_ ((void));
|
|
-extern Lisp_Object code_convert_string_norecord P_ ((Lisp_Object, Lisp_Object,
|
|
- int));
|
|
|
|
/* Defined in charset.c */
|
|
extern int nonascii_insert_offset;
|