Browse Source

fix comments regarding {*path,sys}conf()

OPENBSD_2_1
deraadt 27 years ago
parent
commit
f48a78fb7a
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/include/unistd.h

+ 4
- 4
src/include/unistd.h View File

@ -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));


Loading…
Cancel
Save