diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-10 22:06:26 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-10 22:06:26 +0000 |
commit | ebc3cc7efa6fe9e795da9a777211cc9fb9bc5a26 (patch) | |
tree | c4708d0e48f3c22cb78ae78fdf31c928b80f3203 | |
parent | aece668947c49055fe3fd8d30cd9f0fe9f8d1a09 (diff) | |
download | postgresql-ebc3cc7efa6fe9e795da9a777211cc9fb9bc5a26.tar.gz postgresql-ebc3cc7efa6fe9e795da9a777211cc9fb9bc5a26.zip |
heapam.h uses type time_t, but didn't include <time.h>.
-rw-r--r-- | src/include/access/heapam.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index 9681bc759d4..17f5f2aede6 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -6,19 +6,20 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.42 1999/05/25 16:13:28 momjian Exp $ + * $Id: heapam.h,v 1.43 1999/07/10 22:06:26 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef HEAPAM_H #define HEAPAM_H -#include <access/tupmacs.h> -#include <access/htup.h> -#include <access/relscan.h> -#include <storage/block.h> -#include <utils/rel.h> -#include <utils/tqual.h> +#include "access/tupmacs.h" +#include "access/htup.h" +#include "access/relscan.h" +#include "storage/block.h" +#include "utils/rel.h" +#include "utils/tqual.h" +#include <time.h> /* ---------------------------------------------------------------- * heap access method statistics |