diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 10:32:10 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 10:32:10 +0000 |
| commit | 0020e8790da4ead45c1e34fcf738d4a1a1f02735 (patch) | |
| tree | 2bfd47d06f31cb4b7b2167cafb3bf6702417a4d9 /src/backend/utils/mmgr/aset.c | |
| parent | 1d0dd471fa129cb795f08e5189f5db335aacabbb (diff) | |
| download | postgresql-0020e8790da4ead45c1e34fcf738d4a1a1f02735.tar.gz | |
Another directory that compiles with no errors, and few warnings
Diffstat (limited to 'src/backend/utils/mmgr/aset.c')
| -rw-r--r-- | src/backend/utils/mmgr/aset.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/backend/utils/mmgr/aset.c b/src/backend/utils/mmgr/aset.c index bbb7cd66f2..5b6ca20925 100644 --- a/src/backend/utils/mmgr/aset.c +++ b/src/backend/utils/mmgr/aset.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/aset.c,v 1.1.1.1 1996/07/09 06:22:09 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/mmgr/aset.c,v 1.2 1996/11/06 10:32:04 scrappy Exp $ * * NOTE * XXX This is a preliminary implementation which lacks fail-fast @@ -16,11 +16,14 @@ *------------------------------------------------------------------------- */ #include <stdio.h> -#include "c.h" +#include "postgres.h" #include "utils/excid.h" /* for ExhaustedMemory */ #include "utils/memutils.h" /* where funnction declarations go */ -#include "utils/elog.h" -#include "utils/palloc.h" +#ifndef HAVE_MEMMOVE +# include <regex/utils.h> +#else +# include <string.h> +#endif #undef AllocSetReset #undef malloc |
