diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 14:00:51 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 14:00:51 -0400 |
commit | 896e28812c51b9ffdf3efc00c7d7ef699e380a58 (patch) | |
tree | aaa25e093fb4a2ac4c57609e1f745e5ac0734ca8 /src/stdio/fprintf.c | |
parent | 0b0d1fe1d4fbf8560577d81e5af0549683eac8ba (diff) |
formatting
Diffstat (limited to 'src/stdio/fprintf.c')
-rw-r--r-- | src/stdio/fprintf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stdio/fprintf.c b/src/stdio/fprintf.c index 40a2d42d..0e6509f8 100644 --- a/src/stdio/fprintf.c +++ b/src/stdio/fprintf.c @@ -1,8 +1,9 @@ +#include <stdarg.h> #include <stdio.h> -#include "stdarg.h" #include "_stdio.h" /** write formatted output to a file stream **/ + int fprintf(FILE * restrict stream, const char * restrict format, ...) { int ret = 0; @@ -24,6 +25,7 @@ int fprintf(FILE * restrict stream, const char * restrict format, ...) writes a formatted string to ARGUMENT(stream). The format of ARGUMENT(format) and the variadic arguments is the same as that for FUNCTION(printf). ***/ + /* STDC(1) */ |