diff options
author | Rene Engelhard <rene@openoffice.org> | 2010-06-14 23:14:28 +0200 |
---|---|---|
committer | Rene Engelhard <rene@openoffice.org> | 2010-06-14 23:14:28 +0200 |
commit | d314f325b48850c0ac377103cf74663fae53dee6 (patch) | |
tree | ad1f0724be89d5f874d3ab6cb934736d2403830f /soltools/cpp | |
parent | e592b814914be90e465aa5a440c3a8865f8bc4c4 (diff) |
systemlibc: add back external statements for stgetopt
Diffstat (limited to 'soltools/cpp')
-rw-r--r-- | soltools/cpp/_unix.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/soltools/cpp/_unix.c b/soltools/cpp/_unix.c index 48a6ff0e189e..024ce6eb3cbd 100644 --- a/soltools/cpp/_unix.c +++ b/soltools/cpp/_unix.c @@ -12,6 +12,12 @@ #include "cpp.h" +#if defined MACOSX +extern int stgetopt(int, char *const *, const char *); +extern char *optarg; +extern int optind; +#endif + extern char rcsid[]; int Pflag = 0; /* print no line information */ |