From ebc3cc7efa6fe9e795da9a777211cc9fb9bc5a26 Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sat, 10 Jul 1999 22:06:26 +0000
Subject: [PATCH] heapam.h uses type time_t, but didn't include <time.h>.

---
 src/include/access/heapam.h | 15 ++++++++-------
 1 file 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
-- 
GitLab