diff megawifi.c @ 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 713b504dc577
children 1a09422b87a5
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,