2010-01-29 Jeff Johnston <jjohnstn@redhat.com>
* libc/search/Makefile.am: Create .def files for bsearch and qsort. * libc/search/Makefile.in: Regenerated. * libc/stdlib/stdlib.tex: Add bsearch and qsort.
This commit is contained in:
parent
54c4a92634
commit
2d69f00e6e
|
@ -1,3 +1,9 @@
|
||||||
|
2010-01-29 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
|
* libc/search/Makefile.am: Create .def files for bsearch and qsort.
|
||||||
|
* libc/search/Makefile.in: Regenerated.
|
||||||
|
* libc/stdlib/stdlib.tex: Add bsearch and qsort.
|
||||||
|
|
||||||
2010-01-24 Corinna Vinschen <corinna@vinschen.de>
|
2010-01-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/locale/nl_langinfo.c (nl_langinfo): Return "CP932" when using
|
* libc/locale/nl_langinfo.c (nl_langinfo): Return "CP932" when using
|
||||||
|
|
|
@ -47,7 +47,9 @@ endif # USE_LIBTOOL
|
||||||
|
|
||||||
SUFFIXES = .def
|
SUFFIXES = .def
|
||||||
|
|
||||||
CHEWOUT_FILES =
|
CHEWOUT_FILES = \
|
||||||
|
bsearch.def \
|
||||||
|
qsort.def
|
||||||
|
|
||||||
CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
|
CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
|
||||||
|
|
||||||
|
|
|
@ -277,7 +277,10 @@ libsearch_la_LDFLAGS = -Xcompiler -nostdlib
|
||||||
@USE_LIBTOOL_FALSE@lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
|
@USE_LIBTOOL_FALSE@lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
|
||||||
@USE_LIBTOOL_FALSE@lib_a_CFLAGS = $(AM_CFLAGS)
|
@USE_LIBTOOL_FALSE@lib_a_CFLAGS = $(AM_CFLAGS)
|
||||||
SUFFIXES = .def
|
SUFFIXES = .def
|
||||||
CHEWOUT_FILES =
|
CHEWOUT_FILES = \
|
||||||
|
bsearch.def \
|
||||||
|
qsort.def
|
||||||
|
|
||||||
CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
|
CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
|
||||||
TARGETDOC = ../tmp.texi
|
TARGETDOC = ../tmp.texi
|
||||||
CLEANFILES = $(CHEWOUT_FILES) *.ref
|
CLEANFILES = $(CHEWOUT_FILES) *.ref
|
||||||
|
|
|
@ -14,6 +14,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
||||||
* atof:: String to double or float
|
* atof:: String to double or float
|
||||||
* atoi:: String to integer
|
* atoi:: String to integer
|
||||||
* atoll:: String to long long
|
* atoll:: String to long long
|
||||||
|
* bsearch:: Binary search
|
||||||
* calloc:: Allocate space for arrays
|
* calloc:: Allocate space for arrays
|
||||||
* div:: Divide two integers
|
* div:: Divide two integers
|
||||||
* ecvtbuf:: Double or float to string of digits
|
* ecvtbuf:: Double or float to string of digits
|
||||||
|
@ -34,6 +35,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
||||||
* mblen:: Minimal multibyte length
|
* mblen:: Minimal multibyte length
|
||||||
* mbtowc:: Minimal multibyte to wide character converter
|
* mbtowc:: Minimal multibyte to wide character converter
|
||||||
* on_exit:: Request execution of functions at program exit
|
* on_exit:: Request execution of functions at program exit
|
||||||
|
* qsort:: Array sort
|
||||||
* rand:: Pseudo-random numbers
|
* rand:: Pseudo-random numbers
|
||||||
* rand48:: Uniformly distributed pseudo-random numbers
|
* rand48:: Uniformly distributed pseudo-random numbers
|
||||||
* strtod:: String to double or float
|
* strtod:: String to double or float
|
||||||
|
@ -79,6 +81,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
||||||
@page
|
@page
|
||||||
@include stdlib/atoll.def
|
@include stdlib/atoll.def
|
||||||
|
|
||||||
|
@page
|
||||||
|
@include search/bsearch.def
|
||||||
|
|
||||||
@page
|
@page
|
||||||
@include stdlib/calloc.def
|
@include stdlib/calloc.def
|
||||||
|
|
||||||
|
@ -136,6 +141,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
||||||
@page
|
@page
|
||||||
@include stdlib/on_exit.def
|
@include stdlib/on_exit.def
|
||||||
|
|
||||||
|
@page
|
||||||
|
@include search/qsort.def
|
||||||
|
|
||||||
@page
|
@page
|
||||||
@include stdlib/rand.def
|
@include stdlib/rand.def
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue