(svn r2017) Explicitly mark SlReadByte as 'inline'

This commit is contained in:
tron 2005-03-15 20:07:46 +00:00
parent a55be6ebef
commit bb88bc5a97

View File

@ -60,7 +60,7 @@ static void NORETURN SlError(const char *msg)
longjmp(_sl.excpt, 0); longjmp(_sl.excpt, 0);
} }
int SlReadByte(void) inline int SlReadByte(void)
{ {
if (_sl.bufp == _sl.bufe) SlReadFill(); if (_sl.bufp == _sl.bufe) SlReadFill();
return *_sl.bufp++; return *_sl.bufp++;