diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-08 20:23:57 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-08 20:23:57 +0000 |
commit | bea4792125389bb68e043ac38b0fed8790d42484 (patch) | |
tree | db74baf44f4e59126210d0651fb579709d965020 /src/backend/port/dynloader/openbsd.c | |
parent | a5715eecb60005b3292424d30de04de158cb12ad (diff) | |
download | postgresql-bea4792125389bb68e043ac38b0fed8790d42484.tar.gz postgresql-bea4792125389bb68e043ac38b0fed8790d42484.zip |
This patch removes a bunch of superfluous #include directives: if
postgres.h or c.h includes a system header (such as stdio.h or
stdlib.h), there's no need to specifically include it in any of the .c
files in the backend.
Neil Conway
Diffstat (limited to 'src/backend/port/dynloader/openbsd.c')
-rw-r--r-- | src/backend/port/dynloader/openbsd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/backend/port/dynloader/openbsd.c b/src/backend/port/dynloader/openbsd.c index 2202b6847b4..3c950baddc0 100644 --- a/src/backend/port/dynloader/openbsd.c +++ b/src/backend/port/dynloader/openbsd.c @@ -42,9 +42,6 @@ static char sccsid[] = "@(#)dl.c 5.4 (Berkeley) 2/23/91"; #include <link.h> #include <dlfcn.h> -#include <stdio.h> -#include <stdlib.h> - #include "dynloader.h" static char error_message[BUFSIZ]; |