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>2003-11-27 22:47:19 +0300
committerJeff Johnston <jjohnstn@redhat.com>2003-11-27 22:47:19 +0300
commit6bbb700c348150b7f16b185ec63eb0c1fcc92584 (patch)
tree13268ce667a37322fd6e8d7aef7f713905e47209 /newlib/libc/stdlib/stdlib.tex
parent6dec26cd0ce7a817fc660ed59182032a44bbac5f (diff)
2003-11-27 Artem B. Bityuckiy <mail_lists@mail.ru>
Jeff Johnston <jjohnstn@redhat.com> * libc/include/stdlib.h (lldiv_t): New type. (atoll, llabs, lldiv): New prototypes. * libc/stdlib/Makefile.am: Add support for atoll, llabs, and lldiv. * libc/stdlib/stdlib.tex: Ditto. * libc/stdlib/Makefile.in: Regenerated. * libc/stdlib/atoll.c: New file. * libc/stdlib/llabs.c: Ditto. * libc/stdlib/lldiv.c: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/stdlib.tex')
-rw-r--r--newlib/libc/stdlib/stdlib.tex12
1 files changed, 12 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/stdlib.tex b/newlib/libc/stdlib/stdlib.tex
index 5798caa69..39fb915fc 100644
--- a/newlib/libc/stdlib/stdlib.tex
+++ b/newlib/libc/stdlib/stdlib.tex
@@ -11,6 +11,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
* atexit:: Request execution of functions at program exit
* atof:: String to double or float
* atoi:: String to integer
+* atoll:: String to long long
* calloc:: Allocate space for arrays
* div:: Divide two integers
* ecvtbuf:: Double or float to string of digits
@@ -21,6 +22,8 @@ The corresponding declarations are in the header file @file{stdlib.h}.
* getenv:: Look up environment variable
* labs:: Long integer absolute value (magnitude)
* ldiv:: Divide two long integers
+* llabs:: Long long integer absolute value (magnitude)
+* lldiv:: Divide two long long integers
* malloc:: Allocate and manage memory (malloc, realloc, free)
* mallinfo:: Get information about allocated memory
* __malloc_lock:: Lock memory pool for malloc and free
@@ -56,6 +59,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/atoi.def
@page
+@include stdlib/atoll.def
+
+@page
@include stdlib/calloc.def
@page
@@ -83,6 +89,12 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/ldiv.def
@page
+@include stdlib/llabs.def
+
+@page
+@include stdlib/lldiv.def
+
+@page
@include stdlib/malloc.def
@page