Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 523adeb commit 28edbdbCopy full SHA for 28edbdb
src/include/c.h
@@ -12,7 +12,7 @@
12
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
13
* Portions Copyright (c) 1994, Regents of the University of California
14
*
15
- * $PostgreSQL: pgsql/src/include/c.h,v 1.196 2006/02/16 23:23:50 petere Exp $
+ * $PostgreSQL: pgsql/src/include/c.h,v 1.197 2006/03/03 21:35:46 momjian Exp $
16
17
*-------------------------------------------------------------------------
18
*/
@@ -66,7 +66,8 @@
66
#include <string.h>
67
#include <stddef.h>
68
#include <stdarg.h>
69
-#ifdef HAVE_STRINGS_H
+/* Some use MinGW-generated pg_config.h but MSVC for extensions. */
70
+#if defined(HAVE_STRINGS_H) && !defined(WIN32_CLIENT_ONLY)
71
#include <strings.h>
72
#endif
73
#include <sys/types.h>
0 commit comments