diff options
author | Magnus Hagander | 2007-07-25 12:22:54 +0000 |
---|---|---|
committer | Magnus Hagander | 2007-07-25 12:22:54 +0000 |
commit | 906b2e1b37d351fd54f4bcfd66167e14dbb51818 (patch) | |
tree | c719d29366902e246d72dbee73790dc5647f3005 /src/include/c.h | |
parent | 5cbb11928eef89df5993940eef6a35ceca5d67a3 (diff) |
Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict with
third party includes (like tcl) that define DLLIMPORT.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h index 73b72a816ad..35e7bb9150f 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.219 2007/02/27 23:48:09 tgl Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.220 2007/07/25 12:22:52 mha Exp $ * *------------------------------------------------------------------------- */ @@ -784,8 +784,8 @@ extern int vsnprintf(char *str, size_t count, const char *fmt, va_list args); #define memmove(d, s, c) bcopy(s, d, c) #endif -#ifndef DLLIMPORT -#define DLLIMPORT /* no special DLL markers on most ports */ +#ifndef PGDLLIMPORT +#define PGDLLIMPORT /* no special DLL markers on most ports */ #endif /* |