mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
e272093d6d
some database, unix programming and cgi scripting extensions. Requested by: Philippe Laliberte <arsphl@oeil.qc.ca> on -ports
22 lines
405 B
Plaintext
22 lines
405 B
Plaintext
--- regex.c-- Mon Dec 1 23:48:17 1997
|
|
+++ regex.c Wed Apr 28 12:59:44 1999
|
|
@@ -4,6 +4,9 @@
|
|
author: george j. carrette
|
|
*/
|
|
|
|
+#if defined(HAVE_SYS_PARAM_H)
|
|
+#include <sys/param.h>
|
|
+#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
@@ -11,7 +14,7 @@
|
|
#if defined(VMS)
|
|
#include <types.h>
|
|
#endif
|
|
-#if defined(sgi)
|
|
+#if defined(sgi) || defined(BSD)
|
|
#include <sys/types.h>
|
|
#endif
|
|
#include <regex.h>
|