diff options
author | 2014-09-18 04:37:56 +0000 | |
---|---|---|
committer | 2014-09-18 04:37:56 +0000 | |
commit | 9f295d469eb31f7d68335463f306a31a2f77bd0e (patch) | |
tree | 7613767a696ae92101518d69d1c4b1389ba2c128 | |
parent | regen (diff) | |
download | wireguard-openbsd-9f295d469eb31f7d68335463f306a31a2f77bd0e.tar.xz wireguard-openbsd-9f295d469eb31f7d68335463f306a31a2f77bd0e.zip |
Our setpgrp() is the BSD version with two args and not the XSI
version with zero args, so it should only be visible if __BSD_VISIBLE
(and not also for __XPG_VISIBLE). Contrawise, readlink() has been
part of base POSIX since 1995, so move to proper #if area for that.
Move crypt_checkpass() to the pure-BSD section of the file.
setpgrp() issue noted by Matti Karnaattu (mkarnaattu (at) gmail.com)
ok millert@
-rw-r--r-- | include/unistd.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/include/unistd.h b/include/unistd.h index 1121fee4594..4022932efc8 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.92 2014/09/01 05:09:52 doug Exp $ */ +/* $OpenBSD: unistd.h,v 1.93 2014/09/18 04:37:56 guenther Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -404,15 +404,14 @@ int fsync(int); int ftruncate(int, off_t); int getlogin_r(char *, size_t) __attribute__((__bounded__(__string__,1,2))); +ssize_t readlink(const char * __restrict, char * __restrict, size_t) + __attribute__ ((__bounded__(__string__,2,3))); #endif #if __POSIX_VISIBLE >= 199506 int fdatasync(int); #endif #if __XPG_VISIBLE || __BSD_VISIBLE -#if __BSD_VISIBLE -int crypt_checkpass(const char *, const char *); -#endif char *crypt(const char *, const char *); int encrypt(char *, int); int fchdir(int); @@ -424,10 +423,7 @@ int lchown(const char *, uid_t, gid_t); int mkstemp(char *); char *mktemp(char *); int nice(int); -ssize_t readlink(const char * __restrict, char * __restrict, size_t) - __attribute__ ((__bounded__(__string__,2,3))); int setkey(const char *); -int setpgrp(pid_t pid, pid_t pgrp); /* obsoleted by setpgid() */ int setregid(gid_t, gid_t); int setreuid(uid_t, uid_t); void swab(const void *, void *, size_t); @@ -492,6 +488,7 @@ int pipe2(int [2], int); #if __BSD_VISIBLE int acct(const char *); int closefrom(int); +int crypt_checkpass(const char *, const char *); int des_cipher(const char *, char *, int32_t, int); int des_setkey(const char *); void endusershell(void); @@ -538,6 +535,7 @@ int sethostid(long); int sethostname(const char *, size_t); int setlogin(const char *); void *setmode(const char *); +int setpgrp(pid_t _pid, pid_t _pgrp); /* BSD compat version */ int setresgid(gid_t, gid_t, gid_t); int setresuid(uid_t, uid_t, uid_t); void setusershell(void); |