void LoadChar

This commit is contained in:
ceriel 1994-10-20 11:52:15 +00:00
parent 4851c0c9f3
commit 7b996be765

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))