diff options
| author | christos <christos@NetBSD.org> | 2019-09-15 23:41:00 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2019-09-15 23:41:00 +0000 |
| commit | ee11056f47976f55b2f55f7e14a9e5e3dd834bfc (patch) | |
| tree | 2ccf6d88b07828307f5322a6726d61901ba746b0 /include | |
| parent | a2f1305a94d0adf119f74a5773c47086056ff9af (diff) | |
Remove the _INCOMPLETE_XOPEN_C063 stuff.
Diffstat (limited to 'include')
| -rw-r--r-- | include/limits.h | 5 | ||||
| -rw-r--r-- | include/unistd.h | 6 |
2 files changed, 3 insertions, 8 deletions
diff --git a/include/limits.h b/include/limits.h index ef7fcea89d0..a26094080e0 100644 --- a/include/limits.h +++ b/include/limits.h @@ -1,4 +1,4 @@ -/* $NetBSD: limits.h,v 1.40 2016/08/04 06:43:43 christos Exp $ */ +/* $NetBSD: limits.h,v 1.41 2019/09/15 23:41:00 christos Exp $ */ /* * Copyright (c) 1988, 1993 @@ -149,9 +149,6 @@ * This hides unimplemented functions from GNU configure until * we are done implementing them. */ -#if !defined(_INCOMPLETE_XOPEN_C063) -#define __stub_fexecve -#endif #include <machine/limits.h> diff --git a/include/unistd.h b/include/unistd.h index 4fe50a83641..98e693efa9a 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $NetBSD: unistd.h,v 1.152 2019/09/15 22:32:48 christos Exp $ */ +/* $NetBSD: unistd.h,v 1.153 2019/09/15 23:41:00 christos Exp $ */ /*- * Copyright (c) 1998, 1999, 2008 The NetBSD Foundation, Inc. @@ -307,7 +307,7 @@ ssize_t pwrite(int, const void *, size_t, off_t); * X/Open Extended API set 2 (a.k.a. C063) */ #if (_POSIX_C_SOURCE - 0) >= 200809L || (_XOPEN_SOURCE - 0 >= 700) || \ - defined(_INCOMPLETE_XOPEN_C063) || defined(_NETBSD_SOURCE) + defined(_NETBSD_SOURCE) int linkat(int, const char *, int, const char *, int); int renameat(int, const char *, int, const char *); int faccessat(int, const char *, int, int); @@ -315,8 +315,6 @@ int fchownat(int, const char *, uid_t, gid_t, int); ssize_t readlinkat(int, const char *, char *, size_t); int symlinkat(const char *, int, const char *); int unlinkat(int, const char *, int); -#endif -#if defined(_INCOMPLETE_XOPEN_C063) int fexecve(int, char * const *, char * const *); #endif |
