diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:26:44 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:26:44 -0400 |
| commit | 9e3ad510a214802163691387bc8aa4568559389c (patch) | |
| tree | 0ac8f01a1481f400f8046b5c1e7fe564a42231f9 | |
| parent | 61e4ad4901b23e7dc21bd8fda0f81fc3b283389e (diff) | |
implement
| -rw-r--r-- | src/wchar/vfwprintf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wchar/vfwprintf.c b/src/wchar/vfwprintf.c index c122a964..4813934e 100644 --- a/src/wchar/vfwprintf.c +++ b/src/wchar/vfwprintf.c @@ -1,8 +1,8 @@ #include <wchar.h> -#include "stdio.h" -#include "stdarg.h" -#include "stdlib.h" -#include "../stdio/_stdio.h" +#include <stdio.h> +#include <stdarg.h> +#include <stdlib.h> +#include "stdio/_stdio.h" int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg) { |
