about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-13 22:01:00 +0000
committerRoland McGrath <roland@gnu.org>1996-05-13 22:01:00 +0000
commita5b7bf0e62e88494d82f7ca6474b6b8b669c1e98 (patch)
treedaaf2d03e20448bd425400c78ffcee8fa82d4f11
parent95a108f0baaa38911b02e90d1f8179fd08a01ac2 (diff)
downloadglibc-a5b7bf0e62e88494d82f7ca6474b6b8b669c1e98.tar.gz
glibc-a5b7bf0e62e88494d82f7ca6474b6b8b669c1e98.tar.xz
glibc-a5b7bf0e62e88494d82f7ca6474b6b8b669c1e98.zip
* configure.in (--with-fp): Note in help string that it's the default.
	* locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t
	instead of unsigned int for map_collection_max and map_collection_act.

	* stdio-common/vfprintf.c [USE_IN_LIBIO] (flockfile, funlockfile):
	Macros removed; they are in <stdio.h>.
	* stdio-common/vfscanf.c: Likewise.

	`-include' to not complain before they exist.
-rw-r--r--ChangeLog11
-rw-r--r--configure.in2
-rw-r--r--locale/programs/ld-ctype.c7
-rw-r--r--stdio-common/vfprintf.c2
-rw-r--r--stdio-common/vfscanf.c2
-rw-r--r--string/envz.c18
6 files changed, 23 insertions, 19 deletions
diff --git a/ChangeLog b/ChangeLog
index a098b67003..61a1bbdb89 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
 Mon May 13 12:03:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
 
+	* configure.in (--with-fp): Note in help string that it's the default.
+
+	* locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t
+	instead of unsigned int for map_collection_max and map_collection_act.
+
+	* stdio-common/vfprintf.c [USE_IN_LIBIO] (flockfile, funlockfile):
+	Macros removed; they are in <stdio.h>.
+	* stdio-common/vfscanf.c: Likewise.
+
 	* posix/glob.c [_AMIGA]: Don't include <pwd.h>.
 	(glob): Remove bogus & in call to globfree.
 	[_AMIGA]: Use AmigaDOS file name conventions.
@@ -7,7 +16,7 @@ Mon May 13 12:03:03 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
 	* time/Makefile (zonenames): Target removed.
 	(extra-objs): Remove it from here.
 	Include the z.* files directly instead of including zonenames; use
-	`-include' to not complain befre they exist.
+	`-include' to not complain before they exist.
 
 	* sysdeps/unix/Makefile: Find sysd-syscalls and s-proto.d with
 	$(common-objpfx) instead of $(objpfx).
diff --git a/configure.in b/configure.in
index d37e4d1c5b..a96a7246ec 100644
--- a/configure.in
+++ b/configure.in
@@ -34,7 +34,7 @@ esac
 
 dnl Arguments to specify presence of other packages/features.
 AC_ARG_WITH(fp, dnl
-  --with-fp		  if using floating-point hardware,
+  --with-fp		  if using floating-point hardware [default=yes],
 	    with_fp=$withval, with_fp=yes)
 AC_ARG_WITH(gnu-binutils, dnl
   --with-gnu-binutils	  if using GNU binutils (as and ld),
diff --git a/locale/programs/ld-ctype.c b/locale/programs/ld-ctype.c
index 79e01ba69b..96124988ce 100644
--- a/locale/programs/ld-ctype.c
+++ b/locale/programs/ld-ctype.c
@@ -88,8 +88,8 @@ struct locale_ctype_t
 #define MAX_NR_CHARMAP 16
   const char *mapnames[MAX_NR_CHARMAP];
   u_int32_t *map_collection[MAX_NR_CHARMAP];
-  unsigned int map_collection_max[MAX_NR_CHARMAP];
-  unsigned int map_collection_act[MAX_NR_CHARMAP];
+  u_int32_t map_collection_max[MAX_NR_CHARMAP];
+  u_int32_t map_collection_act[MAX_NR_CHARMAP];
   size_t map_collection_nr;
   size_t last_map_idx;
   unsigned int from_map_char;
@@ -821,8 +821,7 @@ implementation limit: no more than %d character maps allowed"),
   ctype->mapnames[cnt] = name;
 
   if (max_chars == 0)
-    ctype->map_collection_max[cnt] = charset->mb_cur_max == 1 ? 256
-								      : 512;
+    ctype->map_collection_max[cnt] = charset->mb_cur_max == 1 ? 256 : 512;
   else
     ctype->map_collection_max[cnt] = max_chars;
 
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
index 6430a924f4..193c392eb8 100644
--- a/stdio-common/vfprintf.c
+++ b/stdio-common/vfprintf.c
@@ -102,8 +102,6 @@ ssize_t __wprintf_pad __P ((FILE *, wchar_t pad, size_t n));
 	}								      \
     } while (0)
 # define UNBUFFERED_P(S) ((S)->_IO_file_flags & _IO_UNBUFFERED)
-# define flockfile(S) _IO_flockfile (S)
-# define funlockfile(S) _IO_funlockfile (S)
 #else /* ! USE_IN_LIBIO */
 /* This code is for use in the GNU C library.  */
 # include <stdio.h>
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c
index 9cdad7bb8b..d133ef1a02 100644
--- a/stdio-common/vfscanf.c
+++ b/stdio-common/vfscanf.c
@@ -81,8 +81,6 @@ Cambridge, MA 02139, USA.  */
          return EOF;							      \
        }								      \
     } while (0)
-# define flockfile(S) _IO_flockfile (S)
-# define funlockfile(S) _IO_funlockfile (S)
 #else
 # define inchar()	((c = getc (s)), (void) ++read_in, c)
 # define conv_error()	do {						      \
diff --git a/string/envz.c b/string/envz.c
index e1487043e3..03af3d49ad 100644
--- a/string/envz.c
+++ b/string/envz.c
@@ -89,17 +89,17 @@ envz_remove (char **envz, size_t *envz_len, const char *name)
    because when merging with another envz, the null entry can override an
    entry in the other one.  Null entries can be removed with envz_strip ().  */
 error_t
-envz_add (char **envz, unsigned *envz_len, const char *name, const char *value)
+envz_add (char **envz, size_t *envz_len, const char *name, const char *value)
 {
   envz_remove (envz, envz_len, name);
 
   if (value)
     /* Add the new value, if there is one.  */
     {
-      unsigned name_len = strlen (name);
-      unsigned value_len = strlen (value);
-      unsigned old_envz_len = *envz_len;
-      unsigned new_envz_len = old_envz_len + name_len + 1 + value_len + 1;
+      size_t name_len = strlen (name);
+      size_t value_len = strlen (value);
+      size_t old_envz_len = *envz_len;
+      size_t new_envz_len = old_envz_len + name_len + 1 + value_len + 1;
       char *new_envz = realloc (*envz, new_envz_len);
 
       if (new_envz)
@@ -126,7 +126,7 @@ envz_add (char **envz, unsigned *envz_len, const char *name, const char *value)
    OVERRIDE is true, then values in ENVZ2 will supercede those with the same
    name in ENV, otherwise not.  */
 error_t
-envz_merge (char **envz, unsigned *envz_len, const char *envz2,
+envz_merge (char **envz, size_t *envz_len, const char *envz2,
 	    size_t envz2_len, int override)
 {
   error_t err = 0;
@@ -153,13 +153,13 @@ envz_merge (char **envz, unsigned *envz_len, const char *envz2,
 
 /* Remove null entries.  */
 void
-envz_strip (char **envz, unsigned *envz_len)
+envz_strip (char **envz, size_t *envz_len)
 {
   char *entry = *envz;
-  unsigned left = *envz_len;
+  size_t left = *envz_len;
   while (left)
     {
-      unsigned entry_len = strlen (entry) + 1;
+      size_t entry_len = strlen (entry) + 1;
       left -= entry_len;
       if (! index (entry, SEP))
 	/* Null entry. */