X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fstdio.h;h=06f0f4435ea5bfd650413f5c94161368bdd386d8;hb=a6dd99e5c0b3af81082d24751218c21f7f3e7443;hp=02d711e4ef0e26448c1b23a2ee5ba7b3d37bcd02;hpb=725b1cc72b121ef663aaf23bdaa1a512ae45adb6;p=pdclib.old diff --git a/includes/stdio.h b/includes/stdio.h index 02d711e..06f0f44 100644 --- a/includes/stdio.h +++ b/includes/stdio.h @@ -713,7 +713,7 @@ char * gets( char * s ); /* Equivalent to fputc( c, stdout ), but may be implemented as a macro that evaluates its parameter more than once. */ -int putchar( int c ); +#define putchar( c ) putc( c, stdout ) /* Write the string s (not including the terminating \0) to stdout, and append a newline to the output. Returns a value >= 0 when successful, EOF if a