diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 03:04:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-01-17 03:04:57 +0000 |
commit | 21badba151f12fe80921c2791772482d00f728d2 (patch) | |
tree | 7704849f0e0cc044703195b4b30d15ae533941cc /src/backend/port/dynloader/aix.c | |
parent | 4e34686a36a350d6097bbbd983ec3f823aacf85c (diff) |
Replace direct inclusions of c.h with inclusion of postgres.h,
to ensure that config.h is included as well.
Diffstat (limited to 'src/backend/port/dynloader/aix.c')
-rw-r--r-- | src/backend/port/dynloader/aix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/port/dynloader/aix.c b/src/backend/port/dynloader/aix.c index 4e1f62cedf8..401b08b1afb 100644 --- a/src/backend/port/dynloader/aix.c +++ b/src/backend/port/dynloader/aix.c @@ -12,8 +12,8 @@ #include <sys/ldr.h> #include <a.out.h> #include <ldfcn.h> +#include "postgres.h" #include "dynloader.h" -#include "c.h" /* * We simulate dlopen() et al. through a call to load. Because AIX has |