]> granicus.if.org Git - postgresql/blob - src/pl/plperl/eloglvl.c
Fix a few missed NOIND usages.
[postgresql] / src / pl / plperl / eloglvl.c
1 #include "postgres.h"
2
3 #include "utils/elog.h"
4
5 /*
6  * This kludge is necessary because of the conflicting
7  * definitions of 'DEBUG' between postgres and perl.
8  * we'll live.
9  */
10
11 #include "eloglvl.h"
12
13 int
14 elog_DEBUG(void)
15 {
16         return DEBUG;
17 }
18
19 int
20 elog_ERROR(void)
21 {
22         return ERROR;
23 }
24
25 int
26 elog_NOTICE(void)
27 {
28         return NOTICE;
29 }