From: Alan Cox Date: Tue, 21 Apr 2015 22:48:06 +0000 (+0100) Subject: stdio: tag macros for review X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a8bdd69495b6d7df0601e14fe9a9cf6418456f83;p=FUZIX.git stdio: tag macros for review If the isfoo macros were a lose, then odds on this is as well --- diff --git a/Library/include/stdio.h b/Library/include/stdio.h index 82295396..91197dd7 100644 --- a/Library/include/stdio.h +++ b/Library/include/stdio.h @@ -64,6 +64,7 @@ extern FILE stdin[1]; extern FILE stdout[1]; extern FILE stderr[1]; +/* FIXME: are these really worth the cost ?? */ #define putc(c, stream) \ (((stream)->bufpos >= (stream)->bufwrite) ? \ fputc((c), (stream)) : \