summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2024-01-21 17:22:50 -0500
committerRich Felker <dalias@aerifal.cx>2024-01-21 17:22:50 -0500
commitf247462b0831cbf163e976ee9a909748c674b88b (patch)
tree7c1a41a7de160955c1c74f370e1fa0f4ce748c8c /src
parent07af01816d65b49a901cd784db69a030a6213e03 (diff)
downloadmusl-f247462b0831cbf163e976ee9a909748c674b88b.tar.gz
expose ppoll in default feature profile
the ppoll function has been accepted as a future part of the standard as the outcome of Austin Group tracker issue 1263. at some point it should be exposed unconditionally, but for now, expose it in the default feature profile.
Diffstat (limited to 'src')
-rw-r--r--src/select/ppoll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select/ppoll.c b/src/select/ppoll.c
index e614600a..9a0bf929 100644
--- a/src/select/ppoll.c
+++ b/src/select/ppoll.c
@@ -1,4 +1,4 @@
-#define _GNU_SOURCE
+#define _BSD_SOURCE
#include <poll.h>
#include <signal.h>
#include <errno.h>