(svn r9865) -Fix (r9862): NOT_REACHED() and error() declarations are needed for strgen

This commit is contained in:
glx 2007-05-17 20:00:45 +00:00
parent c8a84628f6
commit 5b74a6ab2f
1 changed files with 5 additions and 3 deletions

View File

@ -327,10 +327,12 @@ assert_compile(sizeof(uint8) == 1);
# define Point OTTD_AMIGA_POINT
#endif
void
#ifndef STRGEN
/* In strgen error is not fatal and it doesn't use NOT_REACHED */
void NORETURN CDECL error(const char *str, ...);
#define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
/* In strgen error is not fatal and returns */
NORETURN
#endif /* STRGEN */
CDECL error(const char *str, ...);
#define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
#endif /* STDAFX_H */