diff options
Diffstat (limited to 'src/interfaces/odbc/dlg_specific.c')
-rw-r--r-- | src/interfaces/odbc/dlg_specific.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/interfaces/odbc/dlg_specific.c b/src/interfaces/odbc/dlg_specific.c index f75d566f5a8..13e8b44e618 100644 --- a/src/interfaces/odbc/dlg_specific.c +++ b/src/interfaces/odbc/dlg_specific.c @@ -21,16 +21,14 @@ #endif #ifndef WIN32 -#include <string.h> -#include "gpps.h" -#ifndef HAVE_SQL_GET_PRIV_PROFILE -#define SQLGetPrivateProfileString(a,b,c,d,e,f) GetPrivateProfileString(a,b,c,d,e,f) -#define SQLWritePrivateProfileString(a,b,c,d) WritePrivateProfileString(a,b,c,d) -#endif -#ifndef HAVE_STRICMP -#define stricmp(s1,s2) strcasecmp(s1,s2) -#define strnicmp(s1,s2,n) strncasecmp(s1,s2,n) -#endif +# include <string.h> +# include "gpps.h" +# define SQLGetPrivateProfileString(a,b,c,d,e,f) GetPrivateProfileString(a,b,c,d,e,f) +# define SQLWritePrivateProfileString(a,b,c,d) WritePrivateProfileString(a,b,c,d) +# ifndef HAVE_STRICMP +# define stricmp(s1,s2) strcasecmp(s1,s2) +# define strnicmp(s1,s2,n) strncasecmp(s1,s2,n) +# endif #endif #include "dlg_specific.h" |