diff options
Diffstat (limited to 'io/wrap/fputwc.c')
-rw-r--r-- | io/wrap/fputwc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/io/wrap/fputwc.c b/io/wrap/fputwc.c new file mode 100644 index 0000000..5075f5b --- /dev/null +++ b/io/wrap/fputwc.c @@ -0,0 +1,7 @@ +#define NO_OPAQUE_TYPE +#include "io.h" + +int _fputc_wrap(int character, FILE *stream) +{ + return fputc(character, stream); +} |