aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2000-01-14 15:43:27 +0000
committerBruce Evans <bde@FreeBSD.org>2000-01-14 15:43:27 +0000
commita5341e911cdd9c253db74ae916b987d63ac1d1be (patch)
tree6e953253903d10fd62350e08a58295dd21541484 /include
parent3a62556310e73c4d132c0f740b37e7683ce3df6e (diff)
downloadsrc-a5341e911cdd9c253db74ae916b987d63ac1d1be.tar.gz
src-a5341e911cdd9c253db74ae916b987d63ac1d1be.zip
Fixed disordering, misformatting, and duplicate declaration of
iruserok_af() in previous commit.
Notes
Notes: svn path=/head/; revision=55975
Diffstat (limited to 'include')
-rw-r--r--include/unistd.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/unistd.h b/include/unistd.h
index ff7fc01f5e59..da36b77ed97a 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -170,7 +170,9 @@ int reboot __P((int));
int revoke __P((const char *));
pid_t rfork __P((int));
int rresvport __P((int *));
+int rresvport_af __P((int *, int));
int ruserok __P((const char *, int, const char *, const char *));
+int ruserok_af __P((const char *, int, const char *, const char *, int));
char *sbrk __P((int));
int select __P((int, fd_set *, fd_set *, fd_set *, struct timeval *));
int setdomainname __P((const char *, int));
@@ -204,9 +206,6 @@ int unwhiteout __P((const char *));
int usleep __P((unsigned int));
void *valloc __P((size_t)); /* obsoleted by malloc() */
pid_t vfork __P((void));
-int rresvport_af __P((int *, int));
-int ruserok_af __P((const char *, int, const char *, const char *, int));
-int iruserok_af __P((void *, int, const char *, const char *, int));
extern char *suboptarg; /* getsubopt(3) external variable */
int getsubopt __P((char **, char * const *, char **));