diff options
Diffstat (limited to 'src/translators/btparse')
-rw-r--r-- | src/translators/btparse/ast.h | 2 | ||||
-rw-r--r-- | src/translators/btparse/btconfig.h | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/translators/btparse/ast.h b/src/translators/btparse/ast.h index 59622ec..8608f22 100644 --- a/src/translators/btparse/ast.h +++ b/src/translators/btparse/ast.h @@ -89,7 +89,7 @@ extern AST *zzastStack[]; void zzlink(AST **, AST **, AST **); void zzsubchild(AST **, AST **, AST **); void zzsubroot(AST **, AST **, AST **); -void zzpre_ast(AST *, void (*)(), void (*)(), void (*)()); +void zzpre_ast(AST *, void (*)(AST *), void (*)(AST *), void (*)(AST *)); void zzfree_ast(AST *); AST *zztmake(AST *, ...); AST *zzdup_ast(AST *); diff --git a/src/translators/btparse/btconfig.h b/src/translators/btparse/btconfig.h index 7405825..66916aa 100644 --- a/src/translators/btparse/btconfig.h +++ b/src/translators/btparse/btconfig.h @@ -36,7 +36,7 @@ /* This file knows about the following ``environments'' UNIX (default) DOS (use #define PC) - MAC (use #define MPW; has a few things for THINK C, Metrowerks) + MAC (use #define MPW; has a few things for THINK C) */ /* @@ -165,9 +165,6 @@ extern void fsetfileinfo (char *filename, unsigned long newcreator, unsigned lon #if 0 #define MAC_FILE_CREATOR 'KAHL' /* THINK C/Symantec C++ Text files */ #endif -#if 0 -#define MAC_FILE_CREATOR 'MMCC' /* Metrowerks C/C++ Text files */ -#endif #endif |