]> git.sur5r.net Git - cc65/blobdiff - src/cc65/preproc.h
Fixed several type conversion issues
[cc65] / src / cc65 / preproc.h
index 194d11c358cfbd38320670f5f0d2793c99be2272..b6fc559cfca89a628099dd08297327a3851a4b8d 100644 (file)
 
 
 
-/* Token table entry */
-struct tok_elt {
-    char *toknam;
-    int toknbr;
-};
-
 /* Set when the pp calls expr() recursively */
 extern unsigned char Preprocessing;
 
@@ -34,10 +28,7 @@ extern unsigned char Preprocessing;
 
 
 
-int searchtok (const char *sym, const struct tok_elt* toks);
-/* Search a token in a table */
-
-void preprocess (void);
+void Preprocess (void);
 /* Preprocess a line */
 
 
@@ -47,5 +38,3 @@ void preprocess (void);
 
 
 
-
-