void LoadChar

This commit is contained in:
ceriel 1994-10-20 11:52:15 +00:00
parent b77cd9bb8e
commit 92bee588be

View File

@ -20,7 +20,7 @@
/* INPUT PRIMITIVES */
#define LoadChar(dest) ((dest = *_ipp++) || (dest = loadbuf()))
#define LoadChar(dest) ((void)((dest = *_ipp++) || (dest = loadbuf())))
#define PushBack() (--_ipp)
#define ChPushBack(ch) (*--_ipp = (ch))