Author: greg.ercolano
Date: 2011-01-04 10:44:25 -0800 (Tue, 04 Jan 2011)
New Revision: 8185
Log:
Clarify platform ifdef's with indenting and grouping.


Modified:
   branches/branch-1.3/examples/howto-add_fd-and-popen.cxx

Modified: branches/branch-1.3/examples/howto-add_fd-and-popen.cxx
===================================================================
--- branches/branch-1.3/examples/howto-add_fd-and-popen.cxx     2011-01-04 
18:28:01 UTC (rev 8184)
+++ branches/branch-1.3/examples/howto-add_fd-and-popen.cxx     2011-01-04 
18:44:25 UTC (rev 8185)
@@ -32,22 +32,22 @@
 //     http://www.fltk.org/str.php
 //
 #include <stdio.h>
-#ifdef _WIN32
-#define PING_CMD "ping -n 10 localhost"                // 'slow command' under 
windows
-#ifdef _MSC_VER
-#define popen _popen
-#define pclose _pclose
-#else /*_MSC_VER*/
-#include <unistd.h>                            // non-MS win32 compilers 
(untested)
-#endif /*_MSC_VER*/
-#else
-#include <unistd.h>
-#define PING_CMD "ping -i 2 -c 10 localhost"   // 'slow command' under unix
-#endif
 #include <FL/Fl.H>
 #include <FL/Fl_Window.H>
 #include <FL/Fl_Multi_Browser.H>
 
+#ifdef _WIN32
+#  define PING_CMD "ping -n 10 localhost"      // 'slow command' under windows
+#  ifdef _MSC_VER
+#    define popen _popen
+#    define pclose _pclose
+#  else /*_MSC_VER*/
+#    include <unistd.h>                                // non-MS win32 
compilers (untested)
+#  endif /*_MSC_VER*/
+#else
+#  include <unistd.h>
+#  define PING_CMD "ping -i 2 -c 10 localhost" // 'slow command' under unix
+#endif
 
 // GLOBALS
 FILE *G_fp = NULL;

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to