15 lines
353 B
C
15 lines
353 B
C
/*
|
|
* The Amsterdam Compiler Kit
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*/
|
|
#ifndef MACH_PROTO_NCG_UTILS_H
|
|
#define MACH_PROTO_NCG_UTILS_H
|
|
|
|
/* mach/proto/ncg/utils.c */
|
|
void error(char *s, ...);
|
|
void fatal(char *s, ...);
|
|
void badassertion(char *asstr, char *file, int line);
|
|
|
|
#endif /* MACH_PROTO_NCG_UTILS_H */
|
|
|