public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] posix: Make posix_spawn extensions available by default
@ 2022-11-04  7:15 Florian Weimer
  2022-11-04 12:04 ` Adhemerval Zanella Netto
  0 siblings, 1 reply; 7+ messages in thread
From: Florian Weimer @ 2022-11-04  7:15 UTC (permalink / raw)
  To: libc-alpha

Some sources merely include <spawn.h> without -D_GNU_SOURCE and expect
declarations for posix_spawn_file_actions_addchdir_np to be available.

Tested on x86_64-linux-gnu.

---
 posix/spawn.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/posix/spawn.h b/posix/spawn.h
index c4a81227b0..f3bcbc56be 100644
--- a/posix/spawn.h
+++ b/posix/spawn.h
@@ -198,7 +198,7 @@ extern int posix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t *
 					     int __fd, int __newfd)
      __THROW __nonnull ((1));
 
-#ifdef __USE_GNU
+#ifdef __USE_MISC
 /* Add an action changing the directory to PATH during spawn.  This
    affects the subsequent file actions.  */
 extern int posix_spawn_file_actions_addchdir_np (posix_spawn_file_actions_t *
@@ -227,7 +227,7 @@ posix_spawn_file_actions_addtcsetpgrp_np (posix_spawn_file_actions_t *,
 					  int __tcfd)
      __THROW __nonnull ((1));
 
-#endif
+#endif /* __USE_MISC */
 
 __END_DECLS
 

base-commit: faaf733f49211439475e50f06716b303ee2644bf


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-11-08  0:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-04  7:15 [PATCH] posix: Make posix_spawn extensions available by default Florian Weimer
2022-11-04 12:04 ` Adhemerval Zanella Netto
2022-11-04 12:10   ` Florian Weimer
2022-11-04 12:26     ` Adhemerval Zanella Netto
2022-11-06 21:26       ` Sam James
2022-11-07 16:10         ` Florian Weimer
2022-11-08  0:05           ` Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).