diff options
author | Bruce Momjian | 2002-11-08 20:23:57 +0000 |
---|---|---|
committer | Bruce Momjian | 2002-11-08 20:23:57 +0000 |
commit | 92869aa5fd9836ab59912a2c5cb0ff7d5c4a3787 (patch) | |
tree | 8096f51563aa9a33e1bea8a0d86e9ee420922626 /src/backend/regex/regexec.c | |
parent | f55acb8d7ee47579d90e05c04818b615c9b679a2 (diff) |
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 59c9ede9f7..41ff00fa69 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> |