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/utils/adt/formatting.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/utils/adt/formatting.c')
-rw-r--r-- | src/backend/utils/adt/formatting.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/utils/adt/formatting.c b/src/backend/utils/adt/formatting.c index 9c2336e8e2c..bebccbdfdc6 100644 --- a/src/backend/utils/adt/formatting.c +++ b/src/backend/utils/adt/formatting.c @@ -1,7 +1,7 @@ /* ----------------------------------------------------------------------- * formatting.c * - * $Header: /cvsroot/pgsql/src/backend/utils/adt/formatting.c,v 1.56 2002/09/20 03:57:09 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/formatting.c,v 1.57 2002/11/08 20:23:56 momjian Exp $ * * * Portions Copyright (c) 1999-2002, PostgreSQL Global Development Group @@ -72,7 +72,6 @@ #include <ctype.h> #include <sys/time.h> #include <unistd.h> -#include <locale.h> #include <math.h> #include <float.h> |