stdio: tag macros for review
authorAlan Cox <alan@linux.intel.com>
Tue, 21 Apr 2015 22:48:06 +0000 (23:48 +0100)
committerAlan Cox <alan@linux.intel.com>
Tue, 21 Apr 2015 22:48:06 +0000 (23:48 +0100)
If the isfoo macros were a lose, then odds on this is as well

Library/include/stdio.h

index 8229539..91197dd 100644 (file)
@@ -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)) : \