diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1996-11-02 18:02:42 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1996-11-02 18:02:42 +0000 |
commit | a226677b8cbdb8f87d2087c94231ad718b63f4a3 (patch) | |
tree | 02a5ca6723f6e25097a068ae48135de18c1f70d7 /otherlibs/str/regex-0.12/regex.c | |
parent | 2c9519d03888c1d05b7eb01a2d24588643f80822 (diff) |
Portage Mac/MPW
regex.c: #include pour Mac
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1136 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/str/regex-0.12/regex.c')
-rw-r--r-- | otherlibs/str/regex-0.12/regex.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/otherlibs/str/regex-0.12/regex.c b/otherlibs/str/regex-0.12/regex.c index 8169880d7..3f4ff815f 100644 --- a/otherlibs/str/regex-0.12/regex.c +++ b/otherlibs/str/regex-0.12/regex.c @@ -27,7 +27,11 @@ #define _GNU_SOURCE /* We need this for `regex.h', and perhaps for the Emacs include files. */ +#if !macintosh #include <sys/types.h> +#else +#include <SizeTDef.h> +#endif #ifdef HAVE_CONFIG_H #include "config.h" |