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/regex/regexec.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/regex/regexec.c')
-rw-r--r-- | src/backend/regex/regexec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/regex/regexec.c b/src/backend/regex/regexec.c index 59c9ede9f7c..41ff00fa699 100644 --- a/src/backend/regex/regexec.c +++ b/src/backend/regex/regexec.c @@ -46,7 +46,6 @@ * macros that code uses. This lets the same code operate on two different * representations for state sets. */ -#include <sys/types.h> #include <limits.h> #include <ctype.h> #include <assert.h> |