diff options
author | Andreas Jaeger <aj@suse.de> | 2000-01-10 11:44:24 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-01-10 11:44:24 +0000 |
commit | 4618c1f7affb9bb52d1c51ceaa28abbbdef3c4b5 (patch) | |
tree | a02c7f73ae681fd9983eb2f0e50b696e4ac68e71 /sysdeps/unix/sysv/linux/mips/sys | |
parent | 7feefb694436e1091ef8ee3d0eb02c7b03b64f14 (diff) | |
download | glibc-4618c1f7affb9bb52d1c51ceaa28abbbdef3c4b5.tar glibc-4618c1f7affb9bb52d1c51ceaa28abbbdef3c4b5.tar.gz glibc-4618c1f7affb9bb52d1c51ceaa28abbbdef3c4b5.tar.bz2 glibc-4618c1f7affb9bb52d1c51ceaa28abbbdef3c4b5.zip |
2000-01-10 Andreas Jaeger <aj@suse.de>
* sysdeps/unix/sysv/linux/mips/bits/ioctl-types.h: Add missing
int's.
* sysdeps/unix/sysv/linux/mips/sys/acct.h: Remove K&R support, add
missing int's.
* sysdeps/unix/sysv/linux/mips/bits/errno.h: Remove K&R support.
* sysdeps/unix/sysv/linux/mips/bits/ipc.h: Likewise.
* sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Likewise.
* sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
* sysdeps/unix/sysv/linux/mips/bits/socket.h: Likewise.
* sysdeps/unix/sysv/linux/mips/sys/cachectl.h: Likewise.
* sysdeps/unix/sysv/linux/mips/sys/sysmips.h: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/sys')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sys/acct.h | 8 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sys/cachectl.h | 10 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sys/sysmips.h | 6 |
3 files changed, 12 insertions, 12 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/sys/acct.h b/sysdeps/unix/sysv/linux/mips/sys/acct.h index ee596db82b..a17153c217 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/acct.h +++ b/sysdeps/unix/sysv/linux/mips/sys/acct.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997 Free Software Foundation, Inc. +/* Copyright (C) 1997, 2000 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 @@ -36,8 +36,8 @@ struct acct time_t ac_stime; /* Accounting system time. */ time_t ac_etime; /* Accounting elapsed time. */ time_t ac_btime; /* Beginning time. */ - long ac_uid; /* Accounting user ID. */ - long ac_gid; /* Accounting group ID. */ + long int ac_uid; /* Accounting user ID. */ + long int ac_gid; /* Accounting group ID. */ unsigned long int ac_tty; /* Controlling tty. */ /* Please note that the value of the `ac_tty' field, a device number, is encoded differently in the kernel and for the libc dev_t type. */ @@ -59,7 +59,7 @@ enum /* Switch process accounting on and off. */ -extern int acct __P ((__const char *__filename)); +extern int acct (__const char *__filename) __THROW; __END_DECLS diff --git a/sysdeps/unix/sysv/linux/mips/sys/cachectl.h b/sysdeps/unix/sysv/linux/mips/sys/cachectl.h index 740c24d6a8..3bbd47cfb4 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/cachectl.h +++ b/sysdeps/unix/sysv/linux/mips/sys/cachectl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 2000 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 @@ -29,13 +29,13 @@ __BEGIN_DECLS #ifdef __USE_MISC -extern int cachectl __P ((void *addr, __const int nbytes, __const int op)); +extern int cachectl (void *addr, __const int nbytes, __const int op) __THROW; #endif -extern int __cachectl __P ((void *addr, __const int nbytes, __const int op)); +extern int __cachectl (void *addr, __const int nbytes, __const int op) __THROW; #ifdef __USE_MISC -extern int cacheflush __P ((void *addr, __const int nbytes, __const int op)); +extern int cacheflush (void *addr, __const int nbytes, __const int op) __THROW; #endif -extern int _flush_cache __P ((char *addr, __const int nbytes, __const int op)); +extern int _flush_cache (char *addr, __const int nbytes, __const int op) __THROW; __END_DECLS diff --git a/sysdeps/unix/sysv/linux/mips/sys/sysmips.h b/sysdeps/unix/sysv/linux/mips/sys/sysmips.h index cbb7eba2b4..8afb149eb9 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/sysmips.h +++ b/sysdeps/unix/sysv/linux/mips/sys/sysmips.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 94, 95, 96, 97 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 94, 95, 96, 97, 2000 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 @@ -28,8 +28,8 @@ __BEGIN_DECLS -extern int sysmips __P ((__const int cmd, __const int arg1, - __const int arg2, __const int arg3)); +extern int sysmips (__const int cmd, __const int arg1, + __const int arg2, __const int arg3) __THROW; __END_DECLS |