Commit 39b031d4 authored by Bruce Momjian's avatar Bruce Momjian

Add "inline" compile fix for MSVC/BCC:

	#define inline __inline

Backpatch to 8.1.X.

Hiroshi Saito
parent 6216cc7e
/* $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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment