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/stdlib/strtoll.c')
-rw-r--r--newlib/libc/stdlib/strtoll.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/strtoll.c b/newlib/libc/stdlib/strtoll.c
index 3ee9e7592..fdba09f24 100644
--- a/newlib/libc/stdlib/strtoll.c
+++ b/newlib/libc/stdlib/strtoll.c
@@ -16,14 +16,14 @@ ANSI_SYNOPSIS
TRAD_SYNOPSIS
#include <stdlib.h>
- long long strtoll (<[s]>, <[ptr]>, <[base]>)
- const char *<[s]>;
+ long strtoll (<[s]>, <[ptr]>, <[base]>)
+ char *<[s]>;
char **<[ptr]>;
int <[base]>;
- long long _strtoll_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
+ long _strtoll_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
char *<[reent]>;
- const char *<[s]>;
+ char *<[s]>;
char **<[ptr]>;
int <[base]>;