diff options
Diffstat (limited to 'misc')
50 files changed, 55 insertions, 154 deletions
diff --git a/misc/acct.c b/misc/acct.c index c5569e5afa..54233170ab 100644 --- a/misc/acct.c +++ b/misc/acct.c @@ -22,8 +22,7 @@ a record for each process as it terminates, to this file. If NAME is NULL, turn accounting off. This call is restricted to the super-user. */ int -acct (name) - const char *name; +acct (const char *name) { __set_errno (ENOSYS); return -1; diff --git a/misc/brk.c b/misc/brk.c index 28c4203399..e3d4fa373c 100644 --- a/misc/brk.c +++ b/misc/brk.c @@ -24,8 +24,7 @@ void *__curbrk; /* Set the end of the process's data space to ADDR. Return 0 if successful, -1 if not. */ int -__brk (addr) - void *addr; +__brk (void *addr) { __set_errno (ENOSYS); return -1; diff --git a/misc/chflags.c b/misc/chflags.c index 241be86be7..84cc606e00 100644 --- a/misc/chflags.c +++ b/misc/chflags.c @@ -24,9 +24,7 @@ int chflags (const char *file, unsigned long int flags) __THROW; int -chflags (file, flags) - const char *file; - unsigned long int flags; +chflags (const char *file, unsigned long int flags) { if (file == NULL) { diff --git a/misc/chroot.c b/misc/chroot.c index 232a29f363..4c0fe7d637 100644 --- a/misc/chroot.c +++ b/misc/chroot.c @@ -21,8 +21,7 @@ /* Make PATH be the root directory (the starting point for absolute paths). This call is restricted to the super-user. */ int -chroot (path) - const char *path; +chroot (const char *path) { __set_errno (ENOSYS); return -1; diff --git a/misc/fchflags.c b/misc/fchflags.c index b9f267583b..ad0d728aa0 100644 --- a/misc/fchflags.c +++ b/misc/fchflags.c @@ -24,9 +24,7 @@ int fchflags (int fd, unsigned long int flags) __THROW; int -fchflags (fd, flags) - int fd; - unsigned long int flags; +fchflags (int fd, unsigned long int flags) { if (fd < 0) { diff --git a/misc/fstab.c b/misc/fstab.c index 97c62feb5d..244db81e47 100644 --- a/misc/fstab.c +++ b/misc/fstab.c @@ -61,8 +61,7 @@ getfsent (void) struct fstab * -getfsspec (name) - const char *name; +getfsspec (const char *name) { struct fstab_state *state; struct mntent *m; @@ -78,8 +77,7 @@ getfsspec (name) struct fstab * -getfsfile (name) - const char *name; +getfsfile (const char *name) { struct fstab_state *state; struct mntent *m; diff --git a/misc/fsync.c b/misc/fsync.c index 05f3acfc0a..8f1d95909e 100644 --- a/misc/fsync.c +++ b/misc/fsync.c @@ -20,8 +20,7 @@ /* Make all changes done to FD actually appear on disk. */ int -fsync (fd) - int fd; +fsync (int fd) { __set_errno (ENOSYS); return -1; diff --git a/misc/ftruncate.c b/misc/ftruncate.c index 2d43c76a37..a015c6e990 100644 --- a/misc/ftruncate.c +++ b/misc/ftruncate.c @@ -21,9 +21,7 @@ /* Truncate the file referenced by FD to LENGTH bytes. */ int -__ftruncate (fd, length) - int fd; - off_t length; +__ftruncate (int fd, off_t length) { __set_errno (ENOSYS); return -1; diff --git a/misc/ftruncate64.c b/misc/ftruncate64.c index 1c41fea5a5..2e71bed6e1 100644 --- a/misc/ftruncate64.c +++ b/misc/ftruncate64.c @@ -21,9 +21,7 @@ /* Truncate the file referenced by FD to LENGTH bytes. */ int -__ftruncate64 (fd, length) - int fd; - off64_t length; +__ftruncate64 (int fd, off64_t length) { if ((off_t) length != length) { diff --git a/misc/getdomain.c b/misc/getdomain.c index c5ab3a5e5e..db57c3dd55 100644 --- a/misc/getdomain.c +++ b/misc/getdomain.c @@ -29,9 +29,7 @@ /* The `uname' information includes the domain name. */ int -getdomainname (name, len) - char *name; - size_t len; +getdomainname (char *name, size_t len) { struct utsname u; size_t u_len; @@ -47,9 +45,7 @@ getdomainname (name, len) #else int -getdomainname (name, len) - char *name; - size_t len; +getdomainname (char *name, size_t len) { __set_errno (ENOSYS); return -1; diff --git a/misc/gethostname.c b/misc/gethostname.c index 15097a80ce..ca682b4cb1 100644 --- a/misc/gethostname.c +++ b/misc/gethostname.c @@ -22,9 +22,7 @@ The result is null-terminated if LEN is large enough for the full name and the terminator. */ int -__gethostname (name, len) - char *name; - size_t len; +__gethostname (char *name, size_t len) { __set_errno (ENOSYS); return -1; diff --git a/misc/getpass.c b/misc/getpass.c index 78fe8f2b53..a6d1c88975 100644 --- a/misc/getpass.c +++ b/misc/getpass.c @@ -43,8 +43,7 @@ call_fclose (void *arg) } char * -getpass (prompt) - const char *prompt; +getpass (const char *prompt) { FILE *in, *out; struct termios s, t; diff --git a/misc/getttyent.c b/misc/getttyent.c index fcdbc2274c..d2af870123 100644 --- a/misc/getttyent.c +++ b/misc/getttyent.c @@ -142,8 +142,7 @@ weak_alias (__getttyent, getttyent) */ static char * internal_function -skip(p) - char *p; +skip (char *p) { char *t; int c, q; @@ -177,8 +176,7 @@ skip(p) static char * internal_function -value(p) - char *p; +value (char *p) { return ((p = index(p, '=')) ? ++p : NULL); diff --git a/misc/gtty.c b/misc/gtty.c index 9a64a9a0dc..798185ebb7 100644 --- a/misc/gtty.c +++ b/misc/gtty.c @@ -21,9 +21,7 @@ /* Fill in *PARAMS with terminal parameters associated with FD. */ int -gtty (fd, params) - int fd; - struct sgttyb *params; +gtty (int fd, struct sgttyb *params) { if (params == NULL) { diff --git a/misc/hsearch.c b/misc/hsearch.c index 7a0b0dc406..9442f69a61 100644 --- a/misc/hsearch.c +++ b/misc/hsearch.c @@ -24,9 +24,7 @@ static struct hsearch_data htab; /* Define the non-reentrant function using the reentrant counterparts. */ ENTRY * -hsearch (item, action) - ENTRY item; - ACTION action; +hsearch (ENTRY item, ACTION action) { ENTRY *result; @@ -37,8 +35,7 @@ hsearch (item, action) int -hcreate (nel) - size_t nel; +hcreate (size_t nel) { return __hcreate_r (nel, &htab); } diff --git a/misc/hsearch_r.c b/misc/hsearch_r.c index 559df29cf7..9d6cd81c95 100644 --- a/misc/hsearch_r.c +++ b/misc/hsearch_r.c @@ -62,9 +62,7 @@ isprime (unsigned int number) The contents of the table is zeroed, especially the field used becomes zero. */ int -__hcreate_r (nel, htab) - size_t nel; - struct hsearch_data *htab; +__hcreate_r (size_t nel, struct hsearch_data *htab) { /* Test for correct arguments. */ if (htab == NULL) @@ -111,8 +109,7 @@ weak_alias (__hcreate_r, hcreate_r) /* After using the hash table it has to be destroyed. The used memory can be freed and the local static variable can be marked as not used. */ void -__hdestroy_r (htab) - struct hsearch_data *htab; +__hdestroy_r (struct hsearch_data *htab) { /* Test for correct arguments. */ if (htab == NULL) diff --git a/misc/ioctl.c b/misc/ioctl.c index f75f3e41b2..d07c3d9994 100644 --- a/misc/ioctl.c +++ b/misc/ioctl.c @@ -21,9 +21,7 @@ /* Perform the I/O control operation specified by REQUEST on FD. The actual type and use of ARG and the return value depend on REQUEST. */ int -__ioctl (fd, request) - int fd; - unsigned long int request; +__ioctl (int fd, unsigned long int request) { __set_errno (ENOSYS); return -1; diff --git a/misc/mkdtemp.c b/misc/mkdtemp.c index 1f733cdfaa..1da10629ce 100644 --- a/misc/mkdtemp.c +++ b/misc/mkdtemp.c @@ -24,8 +24,7 @@ The directory is created, mode 700, and its name is returned. (This function comes from OpenBSD.) */ char * -mkdtemp (template) - char *template; +mkdtemp (char *template) { if (__gen_tempname (template, 0, 0, __GT_DIR)) return NULL; diff --git a/misc/mkostemp.c b/misc/mkostemp.c index 807e4770a0..73d952b259 100644 --- a/misc/mkostemp.c +++ b/misc/mkostemp.c @@ -27,9 +27,7 @@ they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkostemp (template, flags) - char *template; - int flags; +mkostemp (char *template, int flags) { return __gen_tempname (template, 0, flags, __GT_FILE); } diff --git a/misc/mkostemp64.c b/misc/mkostemp64.c index 2b9c868cd0..0581553bc8 100644 --- a/misc/mkostemp64.c +++ b/misc/mkostemp64.c @@ -27,9 +27,7 @@ they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkostemp64 (template, flags) - char *template; - int flags; +mkostemp64 (char *template, int flags) { return __gen_tempname (template, 0, flags | O_LARGEFILE, __GT_FILE); } diff --git a/misc/mkostemps.c b/misc/mkostemps.c index 892dc69ba2..a7ef17b5f8 100644 --- a/misc/mkostemps.c +++ b/misc/mkostemps.c @@ -28,10 +28,7 @@ "XXXXXX"; they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkostemps (template, suffixlen, flags) - char *template; - int suffixlen; - int flags; +mkostemps (char *template, int suffixlen, int flags) { if (suffixlen < 0) { diff --git a/misc/mkostemps64.c b/misc/mkostemps64.c index 7b48b5c8c0..02ab259f03 100644 --- a/misc/mkostemps64.c +++ b/misc/mkostemps64.c @@ -28,10 +28,7 @@ "XXXXXX"; they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkostemps64 (template, suffixlen, flags) - char *template; - int suffixlen; - int flags; +mkostemps64 (char *template, int suffixlen, int flags) { if (suffixlen < 0) { diff --git a/misc/mkstemp.c b/misc/mkstemp.c index c5018d154a..638115f73a 100644 --- a/misc/mkstemp.c +++ b/misc/mkstemp.c @@ -27,8 +27,7 @@ they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkstemp (template) - char *template; +mkstemp (char *template) { return __gen_tempname (template, 0, 0, __GT_FILE); } diff --git a/misc/mkstemp64.c b/misc/mkstemp64.c index e4b8605950..340171bb93 100644 --- a/misc/mkstemp64.c +++ b/misc/mkstemp64.c @@ -27,8 +27,7 @@ they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkstemp64 (template) - char *template; +mkstemp64 (char *template) { return __gen_tempname (template, 0, O_LARGEFILE, __GT_FILE); } diff --git a/misc/mkstemps.c b/misc/mkstemps.c index ca17d1d71a..5765731e5d 100644 --- a/misc/mkstemps.c +++ b/misc/mkstemps.c @@ -28,9 +28,7 @@ "XXXXXX"; they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkstemps (template, suffixlen) - char *template; - int suffixlen; +mkstemps (char *template, int suffixlen) { if (suffixlen < 0) { diff --git a/misc/mkstemps64.c b/misc/mkstemps64.c index dd786f13ab..210f495246 100644 --- a/misc/mkstemps64.c +++ b/misc/mkstemps64.c @@ -28,9 +28,7 @@ "XXXXXX"; they are replaced with a string that makes the filename unique. Then open the file and return a fd. */ int -mkstemps64 (template, suffixlen) - char *template; - int suffixlen; +mkstemps64 (char *template, int suffixlen) { if (suffixlen < 0) { diff --git a/misc/mktemp.c b/misc/mktemp.c index 763dee8c3d..940e99c04e 100644 --- a/misc/mktemp.c +++ b/misc/mktemp.c @@ -22,8 +22,7 @@ The last six characters of TEMPLATE must be "XXXXXX"; they are replaced with a string that makes the filename unique. */ char * -__mktemp (template) - char *template; +__mktemp (char *template) { if (__gen_tempname (template, 0, 0, __GT_NOCREATE) < 0) /* We return the null string if we can't find a unique file name. */ diff --git a/misc/preadv.c b/misc/preadv.c index 36296e3e98..ad676c336d 100644 --- a/misc/preadv.c +++ b/misc/preadv.c @@ -26,11 +26,7 @@ 'pread' (see <unistd.h>) except that data are put in VECTOR instead of a contiguous buffer. */ ssize_t -preadv (fd, vector, count, offset) - int fd; - const struct iovec *vector; - int count; - off_t offset; +preadv (int fd, const struct iovec *vector, int count, off_t offset) { __set_errno (ENOSYS); return -1; diff --git a/misc/preadv64.c b/misc/preadv64.c index d73ad87357..df8df2482b 100644 --- a/misc/preadv64.c +++ b/misc/preadv64.c @@ -26,11 +26,7 @@ 'pread' (see <unistd.h>) except that data are put in VECTOR instead of a contiguous buffer. */ ssize_t -preadv64 (fd, vector, count, offset) - int fd; - const struct iovec *vector; - int count; - off64_t offset; +preadv64 (int fd, const struct iovec *vector, int count, off64_t offset) { __set_errno (ENOSYS); return -1; diff --git a/misc/pwritev.c b/misc/pwritev.c index 0b09809a48..980fed4baf 100644 --- a/misc/pwritev.c +++ b/misc/pwritev.c @@ -26,11 +26,7 @@ <unistd.h>) except that the data are taken from VECTOR instead of a contiguous buffer. */ ssize_t -pwritev (fd, vector, count, offset) - int fd; - const struct iovec *vector; - int count; - off_t offset; +pwritev (int fd, const struct iovec *vector, int count, off_t offset) { __set_errno (ENOSYS); return -1; diff --git a/misc/pwritev64.c b/misc/pwritev64.c index 8201b2c5f1..c89bbd8c92 100644 --- a/misc/pwritev64.c +++ b/misc/pwritev64.c @@ -26,11 +26,7 @@ <unistd.h>) except that the data are taken from VECTOR instead of a contiguous buffer. */ ssize_t -pwritev64 (fd, vector, count, offset) - int fd; - const struct iovec *vector; - int count; - off64_t offset; +pwritev64 (int fd, const struct iovec *vector, int count, off64_t offset) { __set_errno (ENOSYS); return -1; diff --git a/misc/readv.c b/misc/readv.c index de78708dc6..dc4d34af55 100644 --- a/misc/readv.c +++ b/misc/readv.c @@ -25,10 +25,7 @@ Operates just like `read' (see <unistd.h>) except that data are put in VECTOR instead of a contiguous buffer. */ ssize_t -__readv (fd, vector, count) - int fd; - const struct iovec *vector; - int count; +__readv (int fd, const struct iovec *vector, int count) { __set_errno (ENOSYS); return -1; diff --git a/misc/revoke.c b/misc/revoke.c index 2baf5d6911..1d00037b5e 100644 --- a/misc/revoke.c +++ b/misc/revoke.c @@ -20,8 +20,7 @@ #include <errno.h> int -revoke (file) - const char *file; +revoke (const char *file) { __set_errno (ENOSYS); return -1; diff --git a/misc/setdomain.c b/misc/setdomain.c index 3cc03b1a1c..b25b39c038 100644 --- a/misc/setdomain.c +++ b/misc/setdomain.c @@ -21,9 +21,7 @@ /* Set the name of the current YP domain to NAME, which is LEN bytes long. This call is restricted to the super-user. */ int -setdomainname (name, len) - const char *name; - size_t len; +setdomainname (const char *name, size_t len) { __set_errno (ENOSYS); return -1; diff --git a/misc/setegid.c b/misc/setegid.c index 37a3b6ac63..a124c98dd0 100644 --- a/misc/setegid.c +++ b/misc/setegid.c @@ -20,8 +20,7 @@ /* Set the effective group ID of the calling process to GID. */ int -setegid (gid) - __gid_t gid; +setegid (__gid_t gid) { __set_errno (ENOSYS); return -1; diff --git a/misc/seteuid.c b/misc/seteuid.c index af92bcdb8c..ccd934cfb7 100644 --- a/misc/seteuid.c +++ b/misc/seteuid.c @@ -20,8 +20,7 @@ /* Set the effective user ID of the calling process to UID. */ int -seteuid (uid) - __uid_t uid; +seteuid (__uid_t uid) { __set_errno (ENOSYS); return -1; diff --git a/misc/sethostid.c b/misc/sethostid.c index 96c750ea75..bacf172703 100644 --- a/misc/sethostid.c +++ b/misc/sethostid.c @@ -21,8 +21,7 @@ /* Set the current machine's Internet number to ID. This call is restricted to the super-user. */ int -sethostid (id) - long int id; +sethostid (long int id) { __set_errno (ENOSYS); return -1; diff --git a/misc/sethostname.c b/misc/sethostname.c index c6c1440c7b..95270e9769 100644 --- a/misc/sethostname.c +++ b/misc/sethostname.c @@ -21,9 +21,7 @@ /* Set the name of the current host to NAME, which is LEN bytes long. This call is restricted to the super-user. */ int -sethostname (name, len) - const char *name; - size_t len; +sethostname (const char *name, size_t len) { __set_errno (ENOSYS); return -1; diff --git a/misc/setregid.c b/misc/setregid.c index 692bff0105..b3e1bbfd09 100644 --- a/misc/setregid.c +++ b/misc/setregid.c @@ -22,9 +22,7 @@ /* Set the real group ID of the calling process to RGID, and the effective group ID of the calling process to EGID. */ int -__setregid (effective_gid, real_gid) - gid_t effective_gid; - gid_t real_gid; +__setregid (gid_t effective_gid, gid_t real_gid) { __set_errno (ENOSYS); return -1; diff --git a/misc/setreuid.c b/misc/setreuid.c index a6290f0eeb..0d8e059da9 100644 --- a/misc/setreuid.c +++ b/misc/setreuid.c @@ -22,9 +22,7 @@ /* Set the real user ID of the calling process to RUID, and the effective user ID of the calling process to EUID. */ int -__setreuid (effective_uid, real_uid) - uid_t effective_uid; - uid_t real_uid; +__setreuid (uid_t effective_uid, uid_t real_uid) { __set_errno (ENOSYS); return -1; diff --git a/misc/sstk.c b/misc/sstk.c index 437deb173e..ba00698515 100644 --- a/misc/sstk.c +++ b/misc/sstk.c @@ -23,8 +23,7 @@ void *sstk (int increment) __THROW; void * -sstk (increment) - int increment; +sstk (int increment) { __set_errno (ENOSYS); return (void *) -1; diff --git a/misc/stty.c b/misc/stty.c index 0ce3e60e17..79e4f8dc94 100644 --- a/misc/stty.c +++ b/misc/stty.c @@ -21,9 +21,7 @@ /* Set the terminal parameters associated with FD to *PARAMS. */ int -stty (fd, params) - int fd; - const struct sgttyb *params; +stty (int fd, const struct sgttyb *params) { if (params == NULL) { diff --git a/misc/syscall.c b/misc/syscall.c index 7590ad3044..f8237365f2 100644 --- a/misc/syscall.c +++ b/misc/syscall.c @@ -23,8 +23,7 @@ This only makes sense in certain operating systems. */ long int -syscall (callno) - long int callno; +syscall (long int callno) { __set_errno (ENOSYS); return -1; diff --git a/misc/syslog.c b/misc/syslog.c index 034e2c86f3..e387bf8c46 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -452,8 +452,7 @@ closelog (void) /* setlogmask -- set the log mask level */ int -setlogmask(pmask) - int pmask; +setlogmask (int pmask) { int omask; diff --git a/misc/truncate.c b/misc/truncate.c index 750f9553af..45240e9add 100644 --- a/misc/truncate.c +++ b/misc/truncate.c @@ -20,9 +20,7 @@ /* Truncate PATH to LENGTH bytes. */ int -__truncate (path, length) - const char *path; - off_t length; +__truncate (const char *path, off_t length) { __set_errno (ENOSYS); return -1; diff --git a/misc/truncate64.c b/misc/truncate64.c index d1bb4ade2e..e8408d5b04 100644 --- a/misc/truncate64.c +++ b/misc/truncate64.c @@ -21,9 +21,7 @@ /* Truncate PATH to LENGTH bytes. */ int -truncate64 (path, length) - const char *path; - off64_t length; +truncate64 (const char *path, off64_t length) { if ((off_t) length != length) { diff --git a/misc/ualarm.c b/misc/ualarm.c index c6b097270f..43f0ca1aa4 100644 --- a/misc/ualarm.c +++ b/misc/ualarm.c @@ -24,9 +24,7 @@ Returns the number of microseconds remaining before the alarm. */ useconds_t -ualarm (value, interval) - useconds_t value; - useconds_t interval; +ualarm (useconds_t value, useconds_t interval) { __set_errno (ENOSYS); return -1; diff --git a/misc/usleep.c b/misc/usleep.c index a28b77c22b..494a8f7d24 100644 --- a/misc/usleep.c +++ b/misc/usleep.c @@ -20,8 +20,7 @@ /* Sleep USECONDS microseconds, or until a previously set timer goes off. */ int -usleep (useconds) - useconds_t useconds; +usleep (useconds_t useconds) { __set_errno (ENOSYS); return -1; diff --git a/misc/ustat.c b/misc/ustat.c index 1e84062b50..87d5a30700 100644 --- a/misc/ustat.c +++ b/misc/ustat.c @@ -21,9 +21,7 @@ #include <sys/ustat.h> int -ustat (dev, ust) - dev_t dev; - struct ustat * ust; +ustat (dev_t dev, struct ustat *ust) { __set_errno (ENOSYS); return -1; diff --git a/misc/writev.c b/misc/writev.c index 34e7841584..05715224e3 100644 --- a/misc/writev.c +++ b/misc/writev.c @@ -25,10 +25,7 @@ Operates just like `write' (see <unistd.h>) except that the data are taken from VECTOR instead of a contiguous buffer. */ ssize_t -__writev (fd, vector, count) - int fd; - const struct iovec *vector; - int count; +__writev (int fd, const struct iovec *vector, int count) { __set_errno (ENOSYS); return -1; |