From: Magnus Jacobsson Date: Sun, 2 Jan 2022 17:36:33 +0000 (+0100) Subject: xdot: [nfc] remove whitespace in preprocessor directives in xdot.h X-Git-Tag: 3.0.0~80^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55f97a3e6e688c6bf6545f52bb325a1c1b8463ac;p=graphviz xdot: [nfc] remove whitespace in preprocessor directives in xdot.h --- diff --git a/lib/xdot/xdot.h b/lib/xdot/xdot.h index 3a86d56f0..e66adf97a 100644 --- a/lib/xdot/xdot.h +++ b/lib/xdot/xdot.h @@ -17,13 +17,13 @@ extern "C" { #endif #ifdef _WIN32 -# ifdef EXPORT_XDOT -# define XDOT_API __declspec(dllexport) -# else -# define XDOT_API __declspec(dllimport) -# endif +#ifdef EXPORT_XDOT +#define XDOT_API __declspec(dllexport) #else -# define XDOT_API extern +#define XDOT_API __declspec(dllimport) +#endif +#else +#define XDOT_API extern #endif #define INITIAL_XDOT_CAPACITY 512