blob: 8369e671ddd568768c8b69e990206e9756a1216b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "postgres.h"
int
main()
{
#ifdef USE_LOCALE
printf("PostgreSQL compiled with locale support\n");
return 0;
#else
printf("PostgreSQL compiled without locale support\n");
return 1;
#endif
}
|