Module Name: src
Committed By: christos
Date: Sun Sep 15 23:41:00 UTC 2019
Modified Files:
src/include: limits.h unistd.h
Log Message:
Remove the _INCOMPLETE_XOPEN_C063 stuff.
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/include/limits.h
cvs rdiff -u -r1.152 -r1.153 src/include/unistd.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/include/limits.h
diff -u src/include/limits.h:1.40 src/include/limits.h:1.41
--- src/include/limits.h:1.40 Thu Aug 4 02:43:43 2016
+++ src/include/limits.h Sun Sep 15 19:41:00 2019
@@ -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>
Index: src/include/unistd.h
diff -u src/include/unistd.h:1.152 src/include/unistd.h:1.153
--- src/include/unistd.h:1.152 Sun Sep 15 18:32:48 2019
+++ src/include/unistd.h Sun Sep 15 19:41:00 2019
@@ -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_
* 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, g
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