From: Magnus Jacobsson Date: Sat, 1 Jan 2022 15:42:27 +0000 (+0100) Subject: cdt: [nfc] remove whitespace in preprocessor directives in cdt.h X-Git-Tag: 3.0.0~92^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a10388e860c465afdc20383a8f31e7885858062;p=graphviz cdt: [nfc] remove whitespace in preprocessor directives in cdt.h --- diff --git a/lib/cdt/cdt.h b/lib/cdt/cdt.h index 65d798e43..034919bcd 100644 --- a/lib/cdt/cdt.h +++ b/lib/cdt/cdt.h @@ -15,13 +15,13 @@ extern "C" { #include #ifdef _WIN32 -# ifdef EXPORT_CDT -# define CDT_API __declspec(dllexport) -# else -# define CDT_API __declspec(dllimport) -# endif +#ifdef EXPORT_CDT +#define CDT_API __declspec(dllexport) #else -# define CDT_API /* nothing */ +#define CDT_API __declspec(dllimport) +#endif +#else +#define CDT_API /* nothing */ #endif typedef struct _dtlink_s Dtlink_t;