2002-12-16  Art Haas  <ahaas@airmail.net>

	* io/ftw.c: Convert GCC extension initializer syntax to C99.
This commit is contained in:
Ulrich Drepper 2002-12-17 00:06:01 +00:00
parent 87d60668d6
commit f83c716436
6 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2002-12-16 Art Haas <ahaas@airmail.net>
* io/ftw.c: Convert GCC extension initializer syntax to C99.
2002-12-16 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/syscalls.list: Add epoll_create,

View File

@ -1,5 +1,5 @@
/* File tree walker functions.
Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
@ -138,7 +138,7 @@ add_object (struct ftw_data *data, struct STAT *st)
static inline int
find_object (struct ftw_data *data, struct STAT *st)
{
struct known_object obj = { dev: st->st_dev, ino: st->st_ino };
struct known_object obj = { .dev = st->st_dev, .ino = st->st_ino };
return __tfind (&obj, &data->known_objects, object_compare) != NULL;
}

View File

@ -41,7 +41,7 @@ check_semctl (union semun *arg, int semid, int cmd)
case SETALL:
{
struct semid_ds ds;
union semun un = { buf: &ds };
union semun un = { .buf = &ds };
unsigned int length = ~0;
/* It's unfortunate that we need to make a recursive

View File

@ -56,7 +56,7 @@ __setitimer (which, new, old)
case -1: exit(-1);
case 0:
{
struct timespec ts ={tv_sec:(long int)new->it_value.tv_sec,tv_nsec:0};
struct timespec ts ={.tv_sec = (long int)new->it_value.tv_sec, .tv_nsec = 0};
__libc_nanosleep(&ts,&ts);
__kill(getppid(), SIGALRM);
exit(0);

View File

@ -27,7 +27,7 @@ unsigned int
__sleep (seconds)
unsigned int seconds;
{
struct timespec ts ={tv_sec:(long int)seconds,tv_nsec:0};
struct timespec ts ={.tv_sec = (long int)seconds, .tv_nsec = 0};
__libc_nanosleep(&ts,&ts);
return 0;
}

View File

@ -28,7 +28,7 @@ int
usleep (useconds)
useconds_t useconds;
{
struct timespec ts ={tv_sec:0,tv_nsec:(long int)useconds * 1000};
struct timespec ts ={.tv_sec = 0, .tv_nsec = (long int)useconds * 1000};
__libc_nanosleep(&ts,&ts);
return 0;
}