Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/fprintf.c')
-rw-r--r--newlib/libc/stdio/fprintf.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/newlib/libc/stdio/fprintf.c b/newlib/libc/stdio/fprintf.c
index 56a08863a..8f97a8b28 100644
--- a/newlib/libc/stdio/fprintf.c
+++ b/newlib/libc/stdio/fprintf.c
@@ -17,6 +17,7 @@
#include <_ansi.h>
#include <stdio.h>
+
#ifdef _HAVE_STDC
#include <stdarg.h>
#else
@@ -25,13 +26,13 @@
#ifdef _HAVE_STDC
int
-fprintf(FILE * fp, _CONST char *fmt,...)
+fprintf (FILE * fp, const char *fmt,...)
#else
int
-fprintf(fp, fmt, va_alist)
- FILE *fp;
- char *fmt;
- va_dcl
+fprintf (fp, fmt, va_alist)
+ FILE *fp;
+ char *fmt;
+ va_dcl
#endif
{
int ret;