changeset 1535:2781b9551004 nuklear_ui

MSG_NOSIGNAL doesn't exist on all platforms
author Michael Pavone <pavone@retrodev.com>
date Sun, 25 Mar 2018 10:28:08 -0700
parents c59adc305e46
children 982c5327dfcc
files megawifi.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/megawifi.c	Sat Mar 24 22:18:23 2018 -0700
+++ b/megawifi.c	Sun Mar 25 10:28:08 2018 -0700
@@ -33,6 +33,10 @@
 	[255] = "CMD_ERROR"
 };
 
+#ifndef MSG_NOSIGNAL
+#define MSG_NOSIGNAL 0
+#endif
+
 enum {
 	STATE_IDLE=1,
 	STATE_AP_JOIN,