From dff14448f7521b27349af4e67d141aba1c9d7edd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 26 Jun 1998 14:47:05 +0000 Subject: Update. 1998-06-26 14:37 Ulrich Drepper * configure.in: Check for -fexceptions. * config.make.in: Define exceptions, not no-exceptions. * misc/sys/cdefs.h: Define __PMS. When using modern g++ define __P to use throw(). * misc/Makefile: Define CFLAGS-tsearch.c and CFLAGS-lsearch.c to $(exceptions). * stdlib/Makefile: Likewise for bsearch.c, msort.c, and qsort.c. * misc/search.h: Use __PMS in tsearch, tfind, tdelete, twalk, tdestroy, lfind, and lsearch prototpypes. * stdlib/stdlib.h: Likewise for bsearch and qsort. 1998-06-26 Ulrich Drepper * sysdeps/i386/fpu/bits/mathinline.h (__finite): Use C code, not asm. 1998-06-25 Andreas Schwab * Makefile (remove-old-headers): Make phony. * configure.in: Substitute @old_glibc_headers@. 1998-06-26 Ulrich Drepper * libc.map: Remove __libc_uid. 1998-06-24 Andreas Schwab * manual/terminal.texi (Allocation, Pseudo-Terminal Pairs): Fix typos. 1998-06-26 Ulrich Drepper * libc.map: Add Alpha-specific io function from protected namespace. --- stdlib/Makefile | 4 ++++ stdlib/stdlib.h | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) (limited to 'stdlib') diff --git a/stdlib/Makefile b/stdlib/Makefile index 91eaf60..2682766 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -67,6 +67,10 @@ distribute := $(distribute) $(mpn-headers) gen-mpn-copy fpioconst.h generated += isomac isomac.out +CFLAGS-bsearch.c = $(exceptions) +CFLAGS-msort.c = $(exceptions) +CFLAGS-qsort.c = $(exceptions) + include ../Rules diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index b070333..66ea4a5 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -604,14 +604,14 @@ typedef __compar_fn_t comparison_fn_t; /* Do a binary search for KEY in BASE, which consists of NMEMB elements of SIZE bytes each, using COMPAR to perform the comparisons. */ -extern __ptr_t bsearch __P ((__const __ptr_t __key, __const __ptr_t __base, - size_t __nmemb, size_t __size, - __compar_fn_t __compar)); +extern __ptr_t bsearch __PMS ((__const __ptr_t __key, __const __ptr_t __base, + size_t __nmemb, size_t __size, + __compar_fn_t __compar)); /* Sort NMEMB elements of BASE, of SIZE bytes each, using COMPAR to perform the comparisons. */ -extern void qsort __P ((__ptr_t __base, size_t __nmemb, size_t __size, - __compar_fn_t __compar)); +extern void qsort __PMS ((__ptr_t __base, size_t __nmemb, size_t __size, + __compar_fn_t __compar)); /* Return the absolute value of X. */ -- cgit v1.1