~ chicken-core (chicken-5) c567d252bdb3bec67954f75b616a2945f628f917


commit c567d252bdb3bec67954f75b616a2945f628f917
Author:     Evan Hanson <evhan@foldling.org>
AuthorDate: Mon Apr 20 18:26:40 2015 +1200
Commit:     Evan Hanson <evhan@foldling.org>
CommitDate: Mon Apr 20 18:26:40 2015 +1200

    Remove unused C_WINDOWS_GUI macro

diff --git a/chicken.h b/chicken.h
index c4b3da20..44e5be55 100644
--- a/chicken.h
+++ b/chicken.h
@@ -318,7 +318,7 @@ void *alloca ();
 
 /* Have a GUI? */
 
-#if defined(C_WINDOWS_GUI) || defined(C_GUI) || defined(C_PRIVATE_REPOSITORY)
+#if defined(C_GUI) || defined(C_PRIVATE_REPOSITORY)
 # ifdef _WIN32
 #  include <windows.h>
 #  ifndef WINAPI
@@ -1608,7 +1608,7 @@ extern double trunc(double);
 #endif
 
 #if !defined(C_EMBEDDED) && !defined(C_SHARED)
-# if (defined(C_WINDOWS_GUI) || defined(C_GUI)) && defined(_WIN32)
+# if defined(C_GUI) && defined(_WIN32)
 #  define C_main_entry_point            \
   int WINAPI WinMain(HINSTANCE me, HINSTANCE you, LPSTR cmdline, int show) \
   { \
Trap