aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-09-16 06:34:40 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-09-16 06:34:40 +0000
commit0318f227ac565222cbf8951b975a84ab12142403 (patch)
treeb90df8fc32a5c1cb496dcc77d05afd4451155968 /src
parent95251f458c9de48b84188810d8cf4eafc140d11b (diff)
downloadpostgresql-0318f227ac565222cbf8951b975a84ab12142403.tar.gz
postgresql-0318f227ac565222cbf8951b975a84ab12142403.zip
Add missing includes to silence compile
Submitted by: D'Arcy Cain
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_id/pg_id.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/pg_id/pg_id.c b/src/bin/pg_id/pg_id.c
index 675326acbca..251f8c0a40b 100644
--- a/src/bin/pg_id/pg_id.c
+++ b/src/bin/pg_id/pg_id.c
@@ -9,13 +9,16 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.1.1.1 1996/07/09 06:22:14 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/bin/pg_id/Attic/pg_id.c,v 1.2 1996/09/16 06:34:40 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include <sys/types.h>
#include <pwd.h>
#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
int
main(int argc, char **argv)