]> granicus.if.org Git - graphviz/commitdiff
cgraph: [nfc] remove whitespace in preprocessor directives in cghdr.h
authorMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sat, 1 Jan 2022 16:23:08 +0000 (17:23 +0100)
committerMagnus Jacobsson <Magnus.Jacobsson@berotec.se>
Sun, 9 Jan 2022 08:44:21 +0000 (09:44 +0100)
lib/cgraph/cghdr.h

index aa52f4e2fbd12e787c95a4b8bdaf68f4f1665bb4..d6005612b6f3787f5e78477abc73d88932a2e455 100644 (file)
 #include "config.h"
 
 #ifdef _WIN32
-#   ifdef EXPORT_CGHDR
-#       define CGHDR_API __declspec(dllexport)
-#   else
-#       define CGHDR_API __declspec(dllimport)
-#   endif
+#ifdef EXPORT_CGHDR
+#define CGHDR_API __declspec(dllexport)
 #else
-#   define CGHDR_API extern
+#define CGHDR_API __declspec(dllimport)
+#endif
+#else
+#define CGHDR_API extern
 #endif
 
 #include <cgraph.h>