diff options
author | Bryan Henderson | 1996-11-10 01:37:48 +0000 |
---|---|---|
committer | Bryan Henderson | 1996-11-10 01:37:48 +0000 |
commit | 9f1b6bf7dbef2eee79419d47b061298430335b7e (patch) | |
tree | 1b50959159cc522cf2c4db3c816843d417fea9c4 | |
parent | 4e70c059799c4be784190cfaa6f9ae02b54206f0 (diff) |
Add #include <unistd.h> to quiet compiler warning about missing getopt() declaratoin.
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index f636209f8ef..7f219634c6f 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,10 +7,11 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.9 1996/10/23 07:39:42 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.10 1996/11/10 01:37:48 bryanh Exp $ * *------------------------------------------------------------------------- */ +#include <unistd.h> /* For getopt() */ #include <time.h> #include <stdio.h> #include <signal.h> |