summaryrefslogtreecommitdiff
path: root/gpsctl.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2016-08-15 19:56:08 -0700
committerGary E. Miller <gem@rellim.com>2016-08-15 19:56:08 -0700
commitaca3818fad3843ae89d3199d82f7bd6dbce41330 (patch)
treebdd5a98523c3297df6fc5ef20ede4d1c69a244b1 /gpsctl.c
parent9a4bd3589c123def01a3adeb1ed9d3a99bd12316 (diff)
downloadgpsd-aca3818fad3843ae89d3199d82f7bd6dbce41330.tar.gz
sys/ipc.h needs XOPEN_SOURCE 500
XOPEN_SOURCE 500 means X/Open 1995. Seems saef enough.
Diffstat (limited to 'gpsctl.c')
-rw-r--r--gpsctl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gpsctl.c b/gpsctl.c
index e14c1042..ff1ea6b7 100644
--- a/gpsctl.c
+++ b/gpsctl.c
@@ -4,6 +4,12 @@
* BSD terms apply: see the file COPYING in the distribution root for details.
*
*/
+
+/* sys/ipc.h needs _XOPEN_SOURCE, 500 means X/Open 1995 */
+#define _XOPEN_SOURCE 500
+/* pselect() needs _POSIX_C_SOURCE >= 200112L */
+#define _POSIX_C_SOURCE 200112L
+
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>