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:
authorJeff Johnston <jjohnstn@redhat.com>2001-10-01 22:05:11 +0400
committerJeff Johnston <jjohnstn@redhat.com>2001-10-01 22:05:11 +0400
commit5665b0e1d06cf7df8403ff287c8d400ebd368c65 (patch)
tree52ee68be2e527a08d1608deeeddeec5fd0bf9f76 /newlib/libc/stdlib/strtoull_r.c
parent47063f00e4eae2ed37096eda54429c025c0bc7b5 (diff)
2001-10-01 Charles Wilson <cwilson@ece.gatech.edu>
* libc/include/stdlib.h: add declarations for _strtoull_r, _strtoll_r, strtoull, and strtoll. * libc/stdio/local.h: remove declarations of __strtoull_r and __strtoll_r. * libc/stdio/vfscanf.c(__svfscanf_r): call _strtoull_r instead of __strtoull_r. Ditto _strtoll_r vs. __strtoll_r. * libc/stdlib/Makefile.am: add new files to .c list and .def list * libc/stdlib/Makefile.in: regenerate * libc/stdlib/strtoll_r.c: rename __strtoll_r as _strtoll_r * libc/stdlib/strtoull_r.c: rename __strtoull_r as _strtoull_r * libc/stdlib/strtoull.c: new file * libc/stdlib/strtoll.c: new file
Diffstat (limited to 'newlib/libc/stdlib/strtoull_r.c')
-rw-r--r--newlib/libc/stdlib/strtoull_r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/strtoull_r.c b/newlib/libc/stdlib/strtoull_r.c
index 014e4b649..d8a86b3f4 100644
--- a/newlib/libc/stdlib/strtoull_r.c
+++ b/newlib/libc/stdlib/strtoull_r.c
@@ -2,7 +2,7 @@
This code is based on strtoul.c which has the following copyright.
It is used to convert a string into an unsigned long long.
- long long __strtoull_r (struct _reent *rptr, const char *s,
+ long long _strtoull_r (struct _reent *rptr, const char *s,
char **ptr, int base);
*/
@@ -57,7 +57,7 @@
* alphabets and digits are each contiguous.
*/
unsigned long long
-_DEFUN (__strtoull_r, (rptr, nptr, endptr, base),
+_DEFUN (_strtoull_r, (rptr, nptr, endptr, base),
struct _reent *rptr _AND
_CONST char *nptr _AND
char **endptr _AND