]> sourceware.org Git - newlib-cygwin.git/commitdiff
2010-01-29 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Fri, 29 Jan 2010 23:04:21 +0000 (23:04 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Fri, 29 Jan 2010 23:04:21 +0000 (23:04 +0000)
        * libc/search/Makefile.am: Create .def files for bsearch and qsort.
        * libc/search/Makefile.in: Regenerated.
        * libc/stdlib/stdlib.tex: Add bsearch and qsort.

newlib/ChangeLog
newlib/libc/search/Makefile.am
newlib/libc/search/Makefile.in
newlib/libc/stdlib/stdlib.tex

index 5b21f2b1bfb986c88d3e671aa9ee64ec3c4d16ea..7ef714c77c8b3ab13772d89ea68c46d8fc692edd 100644 (file)
@@ -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>
 
        * libc/locale/nl_langinfo.c (nl_langinfo): Return "CP932" when using
index 098be35ba78df5678f38d189197afa080321e5ef..27726fd4cadc5c62e84d9fc1eacf899bf4f0a14b 100644 (file)
@@ -47,7 +47,9 @@ endif # USE_LIBTOOL
 
 SUFFIXES = .def
 
-CHEWOUT_FILES =
+CHEWOUT_FILES = \
+       bsearch.def \
+       qsort.def
 
 CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
 
index ae8862d8da9c74fd6029752ca7e5fea55de77c73..e9354647b5cdfd84b07d2704d387f8b800318c42 100644 (file)
@@ -277,7 +277,10 @@ libsearch_la_LDFLAGS = -Xcompiler -nostdlib
 @USE_LIBTOOL_FALSE@lib_a_SOURCES = $(GENERAL_SOURCES) $(ELIX_SOURCES)
 @USE_LIBTOOL_FALSE@lib_a_CFLAGS = $(AM_CFLAGS)
 SUFFIXES = .def
-CHEWOUT_FILES = 
+CHEWOUT_FILES = \
+       bsearch.def \
+       qsort.def
+
 CHEW = ../../doc/makedoc -f $(srcdir)/../../doc/doc.str
 TARGETDOC = ../tmp.texi
 CLEANFILES = $(CHEWOUT_FILES) *.ref
index b227d13e94fec292308a17b4a94f5c914950fc35..4f7bc59ae570ee1c24b3b6d09ac0537d09409d22 100644 (file)
@@ -14,6 +14,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
 * 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
@@ -34,6 +35,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
 * mblen::      Minimal multibyte length
 * mbtowc::      Minimal multibyte to wide character converter
 * on_exit::     Request execution of functions at program exit
+* qsort::      Array sort
 * rand::        Pseudo-random numbers
 * rand48::      Uniformly distributed pseudo-random numbers
 * strtod::      String to double or float
@@ -79,6 +81,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
 @page
 @include stdlib/atoll.def
 
+@page
+@include search/bsearch.def
+
 @page
 @include stdlib/calloc.def
 
@@ -136,6 +141,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
 @page
 @include stdlib/on_exit.def
 
+@page
+@include search/qsort.def
+
 @page
 @include stdlib/rand.def
 
This page took 0.054124 seconds and 5 git commands to generate.