OSDN Git Service

Attached is a uuencoded tarball that contains
[pg-rex/syncrep.git] / src / pl / plperl / eloglvl.c
1 #include "utils/elog.h"
2
3 /*
4  * This kludge is necessary because of the conflicting
5  * definitions of 'DEBUG' between postgres and perl.
6  * we'll live.
7  */
8
9 #include "eloglvl.h"
10
11 int elog_DEBUG(void) {
12         return DEBUG;
13 }
14
15 int elog_ERROR(void) {
16         return ERROR;
17 }
18
19 int elog_NOIND(void) {
20         return NOIND;
21 }
22
23 int elog_NOTICE(void) {
24         return NOTICE;
25 }