summaryrefslogtreecommitdiff
path: root/libloragw/src/loragw_aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'libloragw/src/loragw_aux.c')
-rw-r--r--libloragw/src/loragw_aux.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/libloragw/src/loragw_aux.c b/libloragw/src/loragw_aux.c
index f1a0999..4958fa3 100644
--- a/libloragw/src/loragw_aux.c
+++ b/libloragw/src/loragw_aux.c
@@ -4,10 +4,10 @@
\____ \| ___ | (_ _) ___ |/ ___) _ \
_____) ) ____| | | || |_| ____( (___| | | |
(______/|_____)_|_|_| \__)_____)\____)_| |_|
- ©2013 Semtech-Cycleo
+ (C)2013 Semtech-Cycleo
Description:
- Lora gateway auxiliary functions
+ LoRa concentrator HAL auxiliary functions
License: Revised BSD License, see LICENSE.TXT file include in the project
Maintainer: Sylvain Miermont
@@ -17,6 +17,13 @@ Maintainer: Sylvain Miermont
/* -------------------------------------------------------------------------- */
/* --- DEPENDANCIES --------------------------------------------------------- */
+/* fix an issue between POSIX and C99 */
+#if __STDC_VERSION__ >= 199901L
+ #define _XOPEN_SOURCE 600
+#else
+ #define _XOPEN_SOURCE 500
+#endif
+
#include <stdio.h> /* printf fprintf */
#include <time.h> /* clock_nanosleep */