diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:57:07 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-08-02 05:57:07 +0000 |
commit | 10ace1fac8d9f2aa887a1095340e218430928fce (patch) | |
tree | 9d6bb091bfbf0b16bb7ad29e5c042de12ee4b678 /src/backend/commands/sequence.c | |
parent | 9a8aeb23a19ee6833480d4c12719d9fd26ad8571 (diff) |
Another mass of them... just #include file changes and/or DOUBLEALIGN->MAXALIGN
Diffstat (limited to 'src/backend/commands/sequence.c')
-rw-r--r-- | src/backend/commands/sequence.c | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c index a6f18e01d3d..b7f959cd65e 100644 --- a/src/backend/commands/sequence.c +++ b/src/backend/commands/sequence.c @@ -5,21 +5,15 @@ * *------------------------------------------------------------------------- */ -#include <stdio.h> -#include <string.h> - -#include <postgres.h> -#include <miscadmin.h> - -#include <storage/bufmgr.h> -#include <storage/bufpage.h> -#include <storage/lmgr.h> -#include <access/heapam.h> -#include <nodes/parsenodes.h> -#include <commands/creatinh.h> -#include <commands/sequence.h> -#include <utils/builtins.h> -#include <utils/acl.h> + +#include "postgres.h" + +#include "access/heapam.h" +#include "commands/creatinh.h" +#include "commands/sequence.h" +#include "miscadmin.h" +#include "utils/acl.h" +#include "utils/builtins.h" #define SEQ_MAGIC 0x1717 |