|
3 | 3 | * pg_freespacemap.c |
4 | 4 | * display some contents of the free space map. |
5 | 5 | * |
6 | | - * $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.1 2006/02/1203:55:53 momjian Exp $ |
| 6 | + * $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.2 2006/02/14 15:03:59 tgl Exp $ |
7 | 7 | *------------------------------------------------------------------------- |
8 | 8 | */ |
9 | 9 | #include"postgres.h" |
|
15 | 15 | #defineNUM_FREESPACE_PAGES_ELEM 6 |
16 | 16 |
|
17 | 17 | #if defined(WIN32)|| defined(__CYGWIN__) |
| 18 | +/* Need DLLIMPORT for some things that are not so marked in main headers */ |
| 19 | +externDLLIMPORTintMaxFSMPages; |
18 | 20 | externDLLIMPORTvolatileuint32InterruptHoldoffCount; |
19 | 21 | #endif |
20 | 22 |
|
|