diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-11 14:44:04 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-11 14:44:04 +0000 |
commit | b99e3b0cccc7daa27ed911cb43714535f82e850f (patch) | |
tree | 19cfe48726d3880356b500625eb191a9d6910e15 /src | |
parent | b0961b3974a064419006db55115b93564ac9d40e (diff) | |
download | postgresql-b99e3b0cccc7daa27ed911cb43714535f82e850f.tar.gz postgresql-b99e3b0cccc7daa27ed911cb43714535f82e850f.zip |
Add missing include errno.h
Diffstat (limited to 'src')
-rw-r--r-- | src/utils/version.c | 3 |
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" |