move the watcom 'aborts' pragma after function declarations.

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1503 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2017-09-16 19:50:12 +00:00
parent 4a3e40fcee
commit 6c88639a10

View file

@ -130,10 +130,10 @@ extern int pr_xstatement;
extern unsigned short pr_crc; extern unsigned short pr_crc;
FUNC_NORETURN void PR_RunError (const char *error, ...) FUNC_PRINTF(1,2);
#ifdef __WATCOMC__ #ifdef __WATCOMC__
#pragma aux PR_RunError aborts; #pragma aux PR_RunError aborts;
#endif #endif
FUNC_NORETURN void PR_RunError (const char *error, ...) FUNC_PRINTF(1,2);
void ED_PrintEdicts (void); void ED_PrintEdicts (void);
void ED_PrintNum (int ent); void ED_PrintNum (int ent);