aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--code/tools/lcc/cpp/getopt.c2
-rw-r--r--code/tools/lcc/cpp/nlist.c1
-rw-r--r--code/tools/lcc/cpp/unix.c4
3 files changed, 3 insertions, 4 deletions
diff --git a/code/tools/lcc/cpp/getopt.c b/code/tools/lcc/cpp/getopt.c
index abcb35f..c4d1af7 100644
--- a/code/tools/lcc/cpp/getopt.c
+++ b/code/tools/lcc/cpp/getopt.c
@@ -8,7 +8,7 @@ int optopt;
char *optarg;
int
-getopt (int argc, char *const argv[], const char *opts)
+lcc_getopt (int argc, char *const argv[], const char *opts)
{
static int sp = 1;
int c;
diff --git a/code/tools/lcc/cpp/nlist.c b/code/tools/lcc/cpp/nlist.c
index d857dfa..d76df86 100644
--- a/code/tools/lcc/cpp/nlist.c
+++ b/code/tools/lcc/cpp/nlist.c
@@ -3,7 +3,6 @@
#include <string.h>
#include "cpp.h"
-extern int getopt(int, char *const *, const char *);
extern char *optarg;
extern int optind;
extern int verbose;
diff --git a/code/tools/lcc/cpp/unix.c b/code/tools/lcc/cpp/unix.c
index 397b1b4..17986d8 100644
--- a/code/tools/lcc/cpp/unix.c
+++ b/code/tools/lcc/cpp/unix.c
@@ -4,7 +4,7 @@
#include <string.h>
#include "cpp.h"
-extern int getopt(int, char *const *, const char *);
+extern int lcc_getopt(int, char *const *, const char *);
extern char *optarg, rcsid[];
extern int optind;
int verbose;
@@ -23,7 +23,7 @@ setup(int argc, char **argv)
int numIncludeDirs = 0;
setup_kwtab();
- while ((c = getopt(argc, argv, "MNOVv+I:D:U:F:lg")) != -1)
+ while ((c = lcc_getopt(argc, argv, "MNOVv+I:D:U:F:lg")) != -1)
switch (c) {
case 'N':
for (i=0; i<NINCLUDE; i++)