From a8bdd69495b6d7df0601e14fe9a9cf6418456f83 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 21 Apr 2015 23:48:06 +0100 Subject: [PATCH] stdio: tag macros for review If the isfoo macros were a lose, then odds on this is as well --- Library/include/stdio.h | 1 + 1 file changed, 1 insertion(+) 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)) : \ -- 2.34.1