|
12 | 12 | * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
13 | 13 | * Portions Copyright (c) 1994, Regents of the University of California
|
14 | 14 | *
|
15 |
| - * $PostgreSQL: pgsql/src/include/c.h,v 1.196 2006/02/16 23:23:50 petere Exp $ |
| 15 | + * $PostgreSQL: pgsql/src/include/c.h,v 1.197 2006/03/03 21:35:46 momjian Exp $ |
16 | 16 | *
|
17 | 17 | *-------------------------------------------------------------------------
|
18 | 18 | */
|
|
66 | 66 | #include<string.h>
|
67 | 67 | #include<stddef.h>
|
68 | 68 | #include<stdarg.h>
|
69 |
| -#ifdefHAVE_STRINGS_H |
| 69 | +/* Some use MinGW-generated pg_config.h but MSVC for extensions. */ |
| 70 | +#if defined(HAVE_STRINGS_H)&& !defined(WIN32_CLIENT_ONLY) |
70 | 71 | #include<strings.h>
|
71 | 72 | #endif
|
72 | 73 | #include<sys/types.h>
|
|