Add "inline" compile fix for MSVC/BCC:

#define inline __inline

Backpatch to 8.1.X.

Hiroshi Saito
This commit is contained in:
Bruce Momjian 2006-05-30 12:43:28 +00:00
parent 6216cc7e25
commit 39b031d417
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $PostgreSQL: pgsql/src/include/pg_config.h.win32,v 1.28 2006/03/11 04:38:38 momjian Exp $ */
/* $PostgreSQL: pgsql/src/include/pg_config.h.win32,v 1.29 2006/05/30 12:43:28 momjian Exp $ */
#ifndef pg_config_h_win32__
#define pg_config_h_win32__
@ -26,6 +26,9 @@
#define HAVE_RANDOM
#endif
#undef inline
#define inline __inline
#define INT64_FORMAT "%I64d"
#define HAVE_DECL_VSNPRINTF 1