summaryrefslogtreecommitdiff
path: root/lib/libedit/sys.h
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>1997-06-25 08:14:24 +0000
committerMike Smith <msmith@FreeBSD.org>1997-06-25 08:14:24 +0000
commitbd5176cb385550bc8bb4232c161461a65e01cd2a (patch)
tree08bd8954bc4eff60db9bbe355be2552a864a8dc8 /lib/libedit/sys.h
parent4ce2d5b5b5d9e52ad9764b19377886701920739f (diff)
Notes
Diffstat (limited to 'lib/libedit/sys.h')
-rw-r--r--lib/libedit/sys.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libedit/sys.h b/lib/libedit/sys.h
index eccf30dca300..9e5fd0f0e8b3 100644
--- a/lib/libedit/sys.h
+++ b/lib/libedit/sys.h
@@ -76,11 +76,12 @@ typedef char* ioctl_t;
#endif
#include <stdio.h>
-#define REGEXEC
-#undef REGEXP
+#define REGEX /* Use POSIX.2 regular expression functions */
+#undef REGEXP /* Use UNIX V8 regular expression functions */
#ifdef SUNOS
-# undef REGEXEC
+# undef REGEX
+# undef REGEXP
# include <malloc.h>
typedef void (*sig_t)__P((int));
# ifdef __GNUC__