summaryrefslogtreecommitdiff
path: root/rsc/source/rscpp/cpp3.c
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-02 09:49:21 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-11 23:41:05 +0100
commit95ceadd4174967187190ae1801aec3deb73536a5 (patch)
treee1f56e4494953e349a25485d31b4ac9982f6df31 /rsc/source/rscpp/cpp3.c
parent7b02141c218db334b75c0d8e524ac8a20e5fe693 (diff)
Some cleaning
Diffstat (limited to 'rsc/source/rscpp/cpp3.c')
-rw-r--r--rsc/source/rscpp/cpp3.c25
1 files changed, 6 insertions, 19 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c
index e2e7cdd98535..3654330a9035 100644
--- a/rsc/source/rscpp/cpp3.c
+++ b/rsc/source/rscpp/cpp3.c
@@ -86,16 +86,14 @@ void addfile(FILE* fp, char* filename)
*/
{
register FILEINFO *file;
-/* #ifndef _NO_PROTO */
- extern FILEINFO *getfile( int bufsize, char *filename ); /* BP */
-/* #endif */
+ extern FILEINFO *getfile( int bufsize, char *filename );
file = getfile(NBUFF, filename);
file->fp = fp; /* Better remember FILE * */
file->buffer[0] = EOS; /* Initialize for first read */
line = 1; /* Working on line 1 now */
wrongline = TRUE; /* Force out initial #line */
}
-
+
void setincdirs()
/*
* Append system-specific directories to the include directory list.
@@ -159,7 +157,7 @@ void setincdirs()
#if HOST == SYS_UNKNOWN
/*
- * BP: 25.07.91, Kontext: GenMake
+ * Kontext: GenMake
* Unter DOS wird nun auch die Environment-Variable INCLUDE ausgewetet.
* Es kommt erschwerend hinzu, dass alle Eintraege, die mit ';' getrennt
* sind, mit in die Liste aufenommen werden muessen.
@@ -184,7 +182,7 @@ void setincdirs()
}
-/* BP: 11.09.91, Kontext: Erweiterung des INCLUDE-Services
+/* Kontext: Erweiterung des INCLUDE-Services
* Bislang konnte der cpp keine Include-Angaben in der Kommandozeile
* vertragen, bei denen die directries mit ';' getrennt wurden.
* Dies ist auch verstaendlich, da dieses cpp fuer UNIX-Systeme
@@ -210,9 +208,6 @@ int AddInclude( char* pIncStr )
return( 1 );
}
-
-
-
int
dooptions(int argc, char** argv)
/*
@@ -248,9 +243,6 @@ dooptions(int argc, char** argv)
break;
case 'D': /* Define symbol */
-#if HOST != SYS_UNIX
-/* zap_uc(ap); */ /* Force define to U.C. */
-#endif
/*
* If the option is just "-Dfoo", make it -Dfoo=1
*/
@@ -311,9 +303,6 @@ dooptions(int argc, char** argv)
break;
case 'U': /* Undefine symbol */
-#if HOST != SYS_UNIX
-/* zap_uc(ap);*/
-#endif
if (defendel(ap, TRUE) == NULL)
cwarn("\"%s\" wasn't defined", ap);
break;
@@ -363,7 +352,7 @@ dooptions(int argc, char** argv)
}
return (j); /* Return new argc */
}
-
+
int
readoptions(char* filename, char*** pfargv)
{
@@ -426,8 +415,6 @@ readoptions(char* filename, char*** pfargv)
return (back);
}
-
-
#if HOST != SYS_UNIX
FILE_LOCAL void
zap_uc(char* ap)
@@ -508,7 +495,7 @@ void initdefines()
#endif
}
}
-
+
#if HOST == SYS_VMS
/*
* getredirection() is intended to aid in porting C programs