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/stdlib.tex')
-rw-r--r--newlib/libc/stdlib/stdlib.tex34
1 files changed, 5 insertions, 29 deletions
diff --git a/newlib/libc/stdlib/stdlib.tex b/newlib/libc/stdlib/stdlib.tex
index 9d19b71a8..fc1643603 100644
--- a/newlib/libc/stdlib/stdlib.tex
+++ b/newlib/libc/stdlib/stdlib.tex
@@ -5,15 +5,13 @@ This chapter groups utility functions useful in a variety of programs.
The corresponding declarations are in the header file @file{stdlib.h}.
@menu
-* _Exit:: End program execution without cleaning up
-* a64l:: String to long long
* abort:: Abnormal termination of a program
* abs:: Integer absolute value (magnitude)
* assert:: Macro for Debugging Diagnostics
* atexit:: Request execution of functions at program exit
* atof:: String to double or float
* atoi:: String to integer
-* atoll:: String to long long
+* bsearch:: Binary search
* calloc:: Allocate space for arrays
* div:: Divide two integers
* ecvtbuf:: Double or float to string of digits
@@ -24,34 +22,24 @@ 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
* mbstowcs:: Minimal multibyte string to wide string converter
* mblen:: Minimal multibyte length
* mbtowc:: Minimal multibyte to wide character converter
-* on_exit:: Request execution of functions at program exit
+* qsort:: Sort an array
* rand:: Pseudo-random numbers
-* rand48:: Uniformly distributed pseudo-random numbers
+* rand48:: Uniformaly distributed pseudo-random numbers
* strtod:: String to double or float
* strtol:: String to long
-* strtoll:: String to long long
* strtoul:: String to unsigned long
-* strtoull:: String to unsigned long long
* system:: Execute command string
* wcstombs:: Minimal wide string to multibyte string converter
* wctomb:: Minimal wide character to multibyte converter
@end menu
@page
-@include stdlib/_Exit.def
-
-@page
-@include stdlib/a64l.def
-
-@page
@include stdlib/abort.def
@page
@@ -70,7 +58,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/atoi.def
@page
-@include stdlib/atoll.def
+@include stdlib/bsearch.def
@page
@include stdlib/calloc.def
@@ -100,12 +88,6 @@ 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
@@ -124,7 +106,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/mbtowc.def
@page
-@include stdlib/on_exit.def
+@include stdlib/qsort.def
@page
@include stdlib/rand.def
@@ -139,15 +121,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/strtol.def
@page
-@include stdlib/strtoll.def
-
-@page
@include stdlib/strtoul.def
@page
-@include stdlib/strtoull.def
-
-@page
@include stdlib/system.def
@page