Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/include Remove the _INCOMPLETE_XOPEN_C063 stuff.



details:   https://anonhg.NetBSD.org/src/rev/136bcd246714
branches:  trunk
changeset: 459571:136bcd246714
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Sep 15 23:41:00 2019 +0000

description:
Remove the _INCOMPLETE_XOPEN_C063 stuff.

diffstat:

 include/limits.h |  5 +----
 include/unistd.h |  6 ++----
 2 files changed, 3 insertions(+), 8 deletions(-)

diffs (46 lines):

diff -r 32ad0ba8ef54 -r 136bcd246714 include/limits.h
--- a/include/limits.h  Sun Sep 15 23:39:13 2019 +0000
+++ b/include/limits.h  Sun Sep 15 23:41:00 2019 +0000
@@ -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 -r 32ad0ba8ef54 -r 136bcd246714 include/unistd.h
--- a/include/unistd.h  Sun Sep 15 23:39:13 2019 +0000
+++ b/include/unistd.h  Sun Sep 15 23:41:00 2019 +0000
@@ -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 @@
  * 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 @@
 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
 



Home | Main Index | Thread Index | Old Index