Skip to content
Snippets Groups Projects
Commit 667685ca authored by Magnus Hagander's avatar Magnus Hagander
Browse files

Add required include to build with cygwin.

Andrew Chernow
parent f426fbf7
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/test/thread/thread_test.c,v 1.5 2008/01/01 19:46:01 momjian Exp $ * $PostgreSQL: pgsql/src/test/thread/thread_test.c,v 1.6 2008/11/18 21:17:26 mha Exp $
* *
* This program tests to see if your standard libc functions use * This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe. * pthread_setspecific()/pthread_getspecific() to be thread-safe.
...@@ -47,6 +47,10 @@ typedef char bool; ...@@ -47,6 +47,10 @@ typedef char bool;
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
/* CYGWIN requires this for MAXHOSTNAMELEN */
#ifdef __CYGWIN__
#include <sys/param.h>
#endif
/****************************************************************** /******************************************************************
* Windows Hacks * Windows Hacks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment