]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't include strings.h.
authorDave Love <fx@gnu.org>
Wed, 30 Oct 2002 18:58:46 +0000 (18:58 +0000)
committerDave Love <fx@gnu.org>
Wed, 30 Oct 2002 18:58:46 +0000 (18:58 +0000)
(bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.

src/s/sol2-5.h

index e45849da405bb24b00291a378a9006d55bc2d624..6e2a1b7736776d4a9c7ee3cf4968c687c045f83e 100644 (file)
    We can optimize this later.  */
 
 #undef USE_MMAP_FOR_BUFFERS
-
-/* Newer versions of Solaris have bcopy etc. as functions, with
-   prototypes in strings.h.  They lose if the defines from usg5-4.h
-   are visible, which happens when X headers are included.  */
-#ifdef HAVE_BCOPY
-#undef bcopy
-#undef bzero
-#undef bcmp
-#ifndef NOT_C_CODE
-#include <strings.h>
-#endif
-#endif