diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/semop.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/semop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/semop.c b/sysdeps/unix/sysv/linux/semop.c index bd120bf4b3..33fd289cc4 100644 --- a/sysdeps/unix/sysv/linux/semop.c +++ b/sysdeps/unix/sysv/linux/semop.c @@ -1,6 +1,6 @@ -/* Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1997, 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. - Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995. + Contributed by Ulrich Drepper <drepper@cygnus.com>, August 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -29,7 +29,7 @@ int semop (semid, sops, nsops) int semid; struct sembuf *sops; - unsigned int nsops; + size_t nsops; { return INLINE_SYSCALL (ipc, 5, IPCOP_semop, semid, (int) nsops, 0, sops); } |