diff options
Diffstat (limited to 'src/pl/plperl/eloglvl.c')
-rw-r--r-- | src/pl/plperl/eloglvl.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/src/pl/plperl/eloglvl.c b/src/pl/plperl/eloglvl.c deleted file mode 100644 index 3baf0279017..00000000000 --- a/src/pl/plperl/eloglvl.c +++ /dev/null @@ -1,45 +0,0 @@ -#include "postgres.h" - -/* - * This kludge is necessary because of the conflicting - * definitions of 'DEBUG' between postgres and perl. - * we'll live. - */ - -#include "eloglvl.h" - -int -elog_DEBUG(void) -{ - return DEBUG2; -} - -int -elog_LOG(void) -{ - return LOG; -} - -int -elog_INFO(void) -{ - return INFO; -} - -int -elog_NOTICE(void) -{ - return NOTICE; -} - -int -elog_WARNING(void) -{ - return WARNING; -} - -int -elog_ERROR(void) -{ - return ERROR; -} |