diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:25:27 +0000 |
commit | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (patch) | |
tree | c97d5f26e89cc9d33c5be420a5e7688835644c77 /src/backend/access/heap/stats.c | |
parent | 62d146bdcd784280b573acd8af52488e66e212cf (diff) |
Another 'mega-commit' of back-patches ...
- integrating the #include file cleanup that Bruce recently did
- got the CPU change to adt/Makefile
- changing DOUBLEALIGN -> MAXALIGN
Diffstat (limited to 'src/backend/access/heap/stats.c')
-rw-r--r-- | src/backend/access/heap/stats.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/backend/access/heap/stats.c b/src/backend/access/heap/stats.c index b17a71cdd9b..0d4f10421ec 100644 --- a/src/backend/access/heap/stats.c +++ b/src/backend/access/heap/stats.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.16 1999/07/03 00:32:36 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.16.2.1 1999/08/02 05:24:37 scrappy Exp $ * * NOTES * initam should be moved someplace else. @@ -15,19 +15,12 @@ *------------------------------------------------------------------------- */ -#include <stdio.h> #include <time.h> -#include <postgres.h> +#include "postgres.h" -#include <access/heapam.h> -#include <utils/mcxt.h> +#include "access/heapam.h" -#ifndef HAVE_MEMMOVE -#include <regex/utils.h> -#else -#include <string.h> -#endif static void InitHeapAccessStatistics(void); |