Makefile: Add target to run sql-dependant tests
[nagios-reports-module.git] / nagios / epn_nagios.h
blob7e7ee513a091e53936d70acefec819961f0acd95
1 /************************************************************************
3 * Embedded Perl Header File
4 * Last Modified: 12-08-2004
6 ************************************************************************/
9 /******** BEGIN EMBEDDED PERL INTERPRETER DECLARATIONS ********/
11 #include <EXTERN.h>
12 #include <perl.h>
14 #include <fcntl.h>
15 #undef ctime /* don't need perl's threaded version */
16 #undef printf /* can't use perl's printf until initialized */
18 /* In perl.h (or friends) there is a macro that defines sighandler as Perl_sighandler, so we must #undef it so we can use our sighandler() function */
19 #undef sighandler
21 /* and we don't need perl's reentrant versions */
22 #undef localtime
23 #undef getpwnam
24 #undef getgrnam
25 #undef strerror
27 #ifdef aTHX
28 EXTERN_C void xs_init(pTHX);
29 #else
30 EXTERN_C void xs_init(void);
31 #endif
33 /******** END EMBEDDED PERL INTERPRETER DECLARATIONS ********/