mirror of
https://github.com/cc65/cc65.git
synced 2026-04-23 23:17:45 +00:00
Marked abort() and longjmp() with __attribute__((noreturn)).
git-svn-id: svn://svn.cc65.org/cc65/trunk@4374 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
+1
-1
@@ -100,7 +100,7 @@ void __fastcall__ srand (unsigned seed);
|
||||
void _randomize (void); /* Non-standard */
|
||||
|
||||
/* Other standard stuff */
|
||||
void abort (void);
|
||||
void abort (void) __attribute__ ((noreturn));
|
||||
int __fastcall__ abs (int val);
|
||||
long __fastcall__ labs (long val);
|
||||
int __fastcall__ atoi (const char* s);
|
||||
|
||||
Reference in New Issue
Block a user