don't use "void"!

This commit is contained in:
ceriel 1987-03-12 22:24:19 +00:00
parent 60f9d1b6c6
commit 4549b5129d

View file

@ -13,7 +13,7 @@
/* #define XXX_YYY /* only for early debugging */
#ifdef XXX_YYY
#define out(str) ((void) sys_write(STDOUT, str, strlen(str)))
#define out(str) (sys_write(STDOUT, str, strlen(str)))
#else
#define out(s)
#endif
@ -123,7 +123,7 @@ checkeol()
if (nospace() != '\n') {
syntax("end of line expected");
(void) nospace();
nospace();
}
}