diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-04 08:53:07 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-04 08:53:07 +0000 |
commit | 434201d8d7260d478bfe6d45db30a9233c4106ef (patch) | |
tree | 8e167909e9cd09d63d6704e78779cde509404930 /src/include/nodes/execnodes.h | |
parent | 63482946c7237c816c72ce5e19e970f79f368aa1 (diff) |
another pass through.
Note. all include files that have been hit so far have had extraneous
include files cleaned out and are reduced to...the lowest common
"include file", based on 'cc -Wall -I. test.c', where test.c is:
#include "postgres.h"
#include "<top of branches>" (ie. top of branches this time was utils/fcache2.h)
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r-- | src/include/nodes/execnodes.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 7cd8593172e..3e01132faa3 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -6,21 +6,21 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execnodes.h,v 1.5 1996/11/03 12:12:50 scrappy Exp $ + * $Id: execnodes.h,v 1.6 1996/11/04 08:52:54 scrappy Exp $ * *------------------------------------------------------------------------- */ #ifndef EXECNODES_H #define EXECNODES_H -#include "executor/hashjoin.h" -#include "nodes/primnodes.h" -#include "access/funcindex.h" -#include "access/relscan.h" -#include "executor/tuptable.h" -#include "nodes/params.h" -#include "access/sdir.h" -#include "nodes/memnodes.h" +#include <nodes/memnodes.h> +#include <nodes/primnodes.h> +#include <executor/hashjoin.h> +#include <access/relscan.h> +#include <access/sdir.h> +#include <nodes/params.h> +#include <executor/tuptable.h> +#include <access/funcindex.h> /* ---------------- * IndexInfo information |