diff options
author | Egbert Eich <eich@suse.de> | 2004-08-26 11:58:10 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-08-26 11:58:10 +0000 |
commit | ec7433b5ba3295225ca65a56a08a2496b034539d (patch) | |
tree | 30fc7d51cb1430a5a68a43a8a332e8621abb4dc9 | |
parent | 078dcdf4fab3f791c2b78938dab7de1882dd62d2 (diff) |
Fixed support for LynxOS 3.1 (LynxOS 4 will follow) (Thomas Mueller).sco_port_update-baserel-0-6-1lg3d-rel-0-7-0lg3d-rel-0-6-2lg3d-baseXORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_3XORG-6_8_99_2XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11XORG-6_8_99_10XORG-6_8_99_1XORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903XORG-6_8-branch
2
-rw-r--r-- | xtrapchar.c | 6 | ||||
-rw-r--r-- | xtrapin.c | 5 | ||||
-rw-r--r-- | xtrapout.c | 5 |
3 files changed, 16 insertions, 0 deletions
diff --git a/xtrapchar.c b/xtrapchar.c index 195b1dc..06b9400 100644 --- a/xtrapchar.c +++ b/xtrapchar.c @@ -90,6 +90,12 @@ SOFTWARE. #ifndef vaxc #define globalref extern #endif +#ifdef Lynx +extern char *optarg; +extern int optind; +extern int opterr; +#endif + /* Special private indicators */ #define BPRESS '!' #define BRELEASE '"' @@ -94,6 +94,11 @@ SOFTWARE. #ifndef vaxc #define globalref extern #endif +#ifdef Lynx +extern char *optarg; +extern int optind; +extern int opterr; +#endif static Boolean grabFlag = False; @@ -101,6 +101,11 @@ SOFTWARE. #ifndef vaxc #define globalref extern #endif +#ifdef Lynx +extern char *optarg; +extern int optind; +extern int opterr; +#endif /* Forward declarations */ |