[Scummvm-cvs-logs] CVS: scummvm scumm.h,1.20,1.21
Ludvig Strigeus
strigeus at users.sourceforge.net
Wed Nov 7 13:45:02 CET 2001
Update of /cvsroot/scummvm/scummvm
In directory usw-pr-cvs1:/tmp/cvs-serv17255
Modified Files:
scumm.h
Log Message:
another noreturn fix
Index: scumm.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** scumm.h 2001/11/07 18:10:51 1.20
--- scumm.h 2001/11/07 21:44:09 1.21
***************
*** 1649,1653 ****
--- 1649,1658 ----
void blitToScreen(Scumm *s, byte *src, int x, int y, int w, int h);
+ #if defined(__GNUC__)
void CDECL error(const char *s, ...) NORETURN;
+ #else
+ void CDECL NORETURN error(const char *s, ...);
+ #endif
+
void CDECL warning(const char *s, ...);
void CDECL debug(int level, const char *s, ...);
More information about the Scummvm-git-logs
mailing list