15 lines
315 B
C
15 lines
315 B
C
/*
|
|
* The Amsterdam Compiler Kit
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
#ifndef UTIL_TOPGEN_MAIN_H
|
|
#define UTIL_TOPGEN_MAIN_H
|
|
|
|
/* util/topgen/main.c */
|
|
int main(int argc, char *argv[]);
|
|
void error(char *s, ...);
|
|
int onlyspace(char *s);
|
|
|
|
#endif /* UTIL_TOPGEN_MAIN_H */
|
|
|