diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-24 18:53:48 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-24 18:53:48 +0000 |
commit | fd786668ea61bc96c5d2b670e88e02650b9fb07a (patch) | |
tree | f54b0b9a6385d18c82be4dd9f9fc554dcae4bdb7 /src/port/pgstrcasecmp.c | |
parent | f8dd00c3efcac3c245e5eb3989b2550f9894f574 (diff) |
Include c.h instead of postgres.h in files that need to be usable in
both frontend and backend. Per Andreas Pflug.
Diffstat (limited to 'src/port/pgstrcasecmp.c')
-rw-r--r-- | src/port/pgstrcasecmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c index 6ac07804af4..ea41103a200 100644 --- a/src/port/pgstrcasecmp.c +++ b/src/port/pgstrcasecmp.c @@ -16,11 +16,11 @@ * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.1 2004/05/07 00:24:59 tgl Exp $ + * $PostgreSQL: pgsql/src/port/pgstrcasecmp.c,v 1.2 2004/06/24 18:53:48 tgl Exp $ * *------------------------------------------------------------------------- */ -#include "postgres.h" +#include "c.h" #include <ctype.h> |