aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1996-05-25 23:37:13 +0000
committerKarl Heuer1996-05-25 23:37:13 +0000
commit805288011b170d23b6d9d9b2a451933fdf28562d (patch)
tree42781f8696876aeabed1fb846540409239579dfb /src
parent4a3142d22ad6d5fa9703b3bb79c4dcb98160c221 (diff)
downloademacs-805288011b170d23b6d9d9b2a451933fdf28562d.tar.gz
emacs-805288011b170d23b6d9d9b2a451933fdf28562d.zip
[SOLARIS2]: Include string.h.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index a44c44f2538..dd30016b435 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -115,6 +115,13 @@ extern void _XEditResCheckMessages ();
115#endif 115#endif
116 116
117#ifdef SOLARIS2 117#ifdef SOLARIS2
118/* memmove will be defined as a macro in Xfuncs.h unless
119 <string.h> is included beforehand. The declaration for memmove in
120 <string.h> will cause a syntax error when Xfuncs.h later includes it. */
121#include <string.h>
122#endif
123
124#ifdef SOLARIS2
118#define X_CONNECTION_LOCK_FLAG XlibDisplayWriting 125#define X_CONNECTION_LOCK_FLAG XlibDisplayWriting
119#endif 126#endif
120 127