diff options
author | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-22 04:39:53 +0000 |
---|---|---|
committer | Bryan Henderson <bryanh@giraffe.netgate.net> | 1996-11-22 04:39:53 +0000 |
commit | 4da9c597af4dbb9097c4f6465268ff48f7e91ab6 (patch) | |
tree | ac87dd23a992fbb53ba769e2d2c703bbc3495904 /src | |
parent | 86ab9a51186916b1668c4d3c293cc617386d6e85 (diff) | |
download | postgresql-4da9c597af4dbb9097c4f6465268ff48f7e91ab6.tar.gz postgresql-4da9c597af4dbb9097c4f6465268ff48f7e91ab6.zip |
Include stdio.h to fix Craig Anderson's compile problem.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/libpq-fe.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/libpq-fe.h b/src/interfaces/libpq/libpq-fe.h index f327b2d84c6..518414b5061 100644 --- a/src/interfaces/libpq/libpq-fe.h +++ b/src/interfaces/libpq/libpq-fe.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: libpq-fe.h,v 1.12 1996/11/11 12:16:57 scrappy Exp $ + * $Id: libpq-fe.h,v 1.13 1996/11/22 04:39:53 bryanh Exp $ * *------------------------------------------------------------------------- */ @@ -18,6 +18,7 @@ extern "C" { #endif +#include <stdio.h> /* ---------------- * include stuff common to fe and be * ---------------- |