aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-11-08 20:23:57 +0000
committerBruce Momjian <bruce@momjian.us>2002-11-08 20:23:57 +0000
commitbea4792125389bb68e043ac38b0fed8790d42484 (patch)
treedb74baf44f4e59126210d0651fb579709d965020 /src/backend/access/transam/xlog.c
parenta5715eecb60005b3292424d30de04de158cb12ad (diff)
downloadpostgresql-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/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 6152ab88c1b..a78533c3890 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.109 2002/11/02 15:54:12 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/access/transam/xlog.c,v 1.110 2002/11/08 20:23:56 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -21,7 +21,6 @@
#include <sys/stat.h>
#include <sys/time.h>
#include <dirent.h>
-#include <locale.h>
#include "access/clog.h"
#include "access/transam.h"