summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-13 17:06:24 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-13 17:06:24 +0000
commitd700109069b55df7462d45e39540b2fcf5185ccd (patch)
treed03ab76c16becd5d405c25c582010ae3c4fbc483
parent7c877057ce5bd9ac131632b3dbbd208c2428d3a9 (diff)
fix comments regarding {*path,sys}conf()
-rw-r--r--include/unistd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 394722a4dbd..6c30be0bed5 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: unistd.h,v 1.10 1996/12/12 23:42:22 deraadt Exp $ */
+/* $OpenBSD: unistd.h,v 1.11 1996/12/13 17:06:23 deraadt Exp $ */
/* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */
/*-
@@ -69,7 +69,7 @@ int execv __P((const char *, char * const *));
int execve __P((const char *, char * const *, char * const *));
int execvp __P((const char *, char * const *));
pid_t fork __P((void));
-long fpathconf __P((int, int)); /* not yet */
+long fpathconf __P((int, int));
char *getcwd __P((char *, size_t));
gid_t getegid __P((void));
uid_t geteuid __P((void));
@@ -83,7 +83,7 @@ uid_t getuid __P((void));
int isatty __P((int));
int link __P((const char *, const char *));
off_t lseek __P((int, off_t, int));
-long pathconf __P((const char *, int)); /* not yet */
+long pathconf __P((const char *, int));
int pause __P((void));
int pipe __P((int *));
ssize_t read __P((int, void *, size_t));
@@ -93,7 +93,7 @@ int setpgid __P((pid_t, pid_t));
pid_t setsid __P((void));
int setuid __P((uid_t));
unsigned sleep __P((unsigned));
-long sysconf __P((int)); /* not yet */
+long sysconf __P((int));
pid_t tcgetpgrp __P((int));
int tcsetpgrp __P((int, pid_t));
char *ttyname __P((int));