diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-10-24 02:33:52 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2021-10-24 02:33:52 +0200 |
| commit | 5f6b1e98dd8bd3d37189a2d606b86ebbc4aa0d0b (patch) | |
| tree | 50aaccb01cac41ebdfa2d6ba8159e3e5faa7ff56 /libpsx/include/stdio.h | |
| parent | 58256c917ee50d19d3c4e352480193fb21eb67b1 (diff) | |
Set conforming interface for vprintf(3)
Diffstat (limited to 'libpsx/include/stdio.h')
| -rw-r--r-- | libpsx/include/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpsx/include/stdio.h b/libpsx/include/stdio.h index 0ea5828..a790aab 100644 --- a/libpsx/include/stdio.h +++ b/libpsx/include/stdio.h @@ -104,7 +104,7 @@ int vsnprintf(char *string, size_t size, const char *fmt, va_list ap); int vsprintf(char *string, const char *fmt, va_list ap); int sprintf(char *string, const char *fmt, ...); int snprintf(char *string, size_t size, const char *fmt, ...); -int vprintf(char *fmt, va_list ap); +int vprintf(const char *fmt, va_list ap); FILE *fdopen(int fildes, const char *mode); FILE *fopen(const char *path, const char *mode); |
