aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-11-11 14:44:04 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-11-11 14:44:04 +0000
commitb99e3b0cccc7daa27ed911cb43714535f82e850f (patch)
tree19cfe48726d3880356b500625eb191a9d6910e15 /src
parentb0961b3974a064419006db55115b93564ac9d40e (diff)
downloadpostgresql-b99e3b0cccc7daa27ed911cb43714535f82e850f.tar.gz
postgresql-b99e3b0cccc7daa27ed911cb43714535f82e850f.zip
Add missing include errno.h
Diffstat (limited to 'src')
-rw-r--r--src/utils/version.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/version.c b/src/utils/version.c
index 28809c37276..554ed8e50ec 100644
--- a/src/utils/version.c
+++ b/src/utils/version.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/utils/Attic/version.c,v 1.1 1996/11/11 13:51:57 bryanh Exp $
+ * $Header: /cvsroot/pgsql/src/utils/Attic/version.c,v 1.2 1996/11/11 14:44:04 scrappy Exp $
*
* NOTES
* XXX eventually, should be able to handle version identifiers
@@ -24,6 +24,7 @@
#include <string.h>
#include <stdio.h>
#include <unistd.h>
+#include <errno.h>
#include "postgres.h"