]> git.eshelyaron.com Git - emacs.git/commitdiff
#undef bcopy & al here. Include strings.h.
authorGerd Moellmann <gerd@gnu.org>
Fri, 15 Dec 2000 14:48:46 +0000 (14:48 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 15 Dec 2000 14:48:46 +0000 (14:48 +0000)
src/s/irix6-5.h

index 237ee3beaf2e68b79861fb1b090922348a91d4c0..39e129a4e3a910bc71be760d7e238d5d84915f0a 100644 (file)
 /* Cancel the #define that is in irix5-0.h.  */
 #undef ospeed
 
+/* If we keep the #defines from usg5-4.h, we lose when using the X
+   headers because (at least) the bzero definition breaks their use of
+   strings.h.  Including strings.h here gets us prototypes for them.
+   (They're in libc though also they seem to be intrinsics in the SGI
+   (Cray) compiler at least at version 7.3).  -- fx  */
+#undef bcopy
+#undef bcmp
+#undef bzero
+#ifndef NOT_C_CODE
+#include <strings.h>
+#endif
+
+#undef TIOCSIGSEND             /* defined in usg5-4.h */