comparison lib/regex.c @ 456:9e835ac8019b TEXTUTILS

GNU text utilities
author Jim Meyering <jim@meyering.net>
date Sat, 24 Jun 1995 21:53:00 +0000
parents 38c0c56c7f85
children
comparison
equal deleted inserted replaced
455:4d750eb4efe8 456:9e835ac8019b
74 74
75 /* This is the normal way of making sure we have a bcopy and a bzero. 75 /* This is the normal way of making sure we have a bcopy and a bzero.
76 This is used in most programs--a few other programs avoid this 76 This is used in most programs--a few other programs avoid this
77 by defining INHIBIT_STRING_HEADER. */ 77 by defining INHIBIT_STRING_HEADER. */
78 #ifndef INHIBIT_STRING_HEADER 78 #ifndef INHIBIT_STRING_HEADER
79 #if HAVE_STRING_H || STDC_HEADERS || defined (_LIBC) 79 #if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || defined (_LIBC)
80 #include <string.h> 80 #include <string.h>
81 #ifndef bcmp 81 #ifndef bcmp
82 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n)) 82 #define bcmp(s1, s2, n) memcmp ((s1), (s2), (n))
83 #endif 83 #endif
84 #ifndef bcopy 84 #ifndef bcopy