diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-05-20 01:47:01 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-05-20 01:47:01 +0000 |
commit | 254df82b4061ac63d7aa04b37f2a1d2f21d6d4e2 (patch) | |
tree | 0dcc0a1768a219a59cd3743ebd9372ad86fdd5b0 | |
parent | 163e72aa60f80a7ce7d13e4382de513143bffba2 (diff) | |
download | postgresql-254df82b4061ac63d7aa04b37f2a1d2f21d6d4e2.tar.gz postgresql-254df82b4061ac63d7aa04b37f2a1d2f21d6d4e2.zip |
Add ctype.h include for new macro in port.h.
-rw-r--r-- | src/include/port.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/port.h b/src/include/port.h index f592797234b..25d7908af48 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/port.h,v 1.33 2004/05/19 04:21:49 momjian Exp $ + * $PostgreSQL: pgsql/src/include/port.h,v 1.34 2004/05/20 01:47:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -16,6 +16,7 @@ #include <pwd.h> #include <netdb.h> #endif +#include <ctype.h> /* non-blocking */ bool set_noblock(int sock); |