1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

* 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.
This commit is contained in:
Andreas Jaeger
2001-01-12 17:03:52 +00:00
parent 5ef50d00de
commit 2e47aff5ac
8 changed files with 16 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (C) 1991, 94, 95, 96, 97, 98 Free Software Foundation, Inc.
/* Copyright (C) 1991, 94, 95, 96, 97, 98, 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
@@ -24,7 +24,7 @@ int
__sigblock (mask)
int mask;
{
register int sig;
register unsigned int sig;
sigset_t set, oset;
if (__sigemptyset (&set) < 0)