]> granicus.if.org Git - postgresql/commitdiff
snprintf.c has no sys/ioctl.h. Trivial patch below:
authorBruce Momjian <bruce@momjian.us>
Mon, 28 Feb 2005 14:16:16 +0000 (14:16 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 28 Feb 2005 14:16:16 +0000 (14:16 +0000)
Magnus Hagander

src/port/snprintf.c

index eb75482f16c5a578903cf12c85f00ed980504aca..854bb624d4bc3725414600d676389f25d0a4e413 100644 (file)
@@ -40,7 +40,9 @@
 Your platform must have a thread-safe snprintf() to compile with threads.
 #endif
 
+#ifndef WIN32
 #include <sys/ioctl.h>
+#endif
 #include <sys/param.h>
 
 
@@ -83,7 +85,7 @@ typedef unsigned long ulong_long;
  * causing nast effects.
  **************************************************************/
 
-/*static char _id[] = "$PostgreSQL: pgsql/src/port/snprintf.c,v 1.6 2005/02/22 04:57:24 momjian Exp $";*/
+/*static char _id[] = "$PostgreSQL: pgsql/src/port/snprintf.c,v 1.7 2005/02/28 14:16:16 momjian Exp $";*/
 static char *end;
 static int     SnprfOverflow;