Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2001-01-12  Andreas Jaeger  <aj@suse.de>

	* posix/fnmatch_loop.c (FCT): Remove signed warnings.
	* posix/wordexp.c (do_parse_glob): Likewise.
	* sysdeps/posix/sigblock.c (__sigblock): Likewise.
	* sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
	* elf/dl-open.c (_dl_open): Likewise.
	* elf/dl-close.c (_dl_close): Likewise.
	* elf/dl-load.c (_dl_map_object): Likewise.
	* iconv/iconv_prog.c (process_fd): Likewise.

	* locale/localeinfo.h (struct locale_data): Use __flexarr instead
	of a zero-length array.
  • Loading branch information
Andreas Jaeger committed Jan 12, 2001
1 parent 2e47aff commit a7cdbcb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
2001-01-12 Andreas Jaeger <aj@suse.de>

* posix/fnmatch_loop.c (FCT): Remove signed warnings.
* posix/wordexp.c (do_parse_glob): Likewise.
* sysdeps/posix/sigblock.c (__sigblock): Likewise.
* sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
* elf/dl-open.c (_dl_open): Likewise.
* elf/dl-close.c (_dl_close): Likewise.
* elf/dl-load.c (_dl_map_object): Likewise.
* iconv/iconv_prog.c (process_fd): Likewise.

* locale/localeinfo.h (struct locale_data): Use __flexarr instead
of a zero-length array.

2001-01-11 Jakub Jelinek <jakub@redhat.com>

* stdlib/cxa_atexit.c (__cxa_atexit): Cast to (void *, int) func.
Expand Down
4 changes: 2 additions & 2 deletions locale/localeinfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Declarations for internal libc locale interfaces
Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
Copyright (C) 1995, 96, 97, 98, 99,2000,2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -65,7 +65,7 @@ struct locale_data
const char *string;
unsigned int word;
}
values[0]; /* Items, usually pointers into `filedata'. */
values __flexarr; /* Items, usually pointers into `filedata'. */
};

/* We know three kinds of collation sorting rules. */
Expand Down

0 comments on commit a7cdbcb

Please sign in to comment.