diff options
Diffstat (limited to 'perl-install/c')
-rw-r--r-- | perl-install/c/stuff.xs.pm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/perl-install/c/stuff.xs.pm b/perl-install/c/stuff.xs.pm index 6ca1e32d3..322266c67 100644 --- a/perl-install/c/stuff.xs.pm +++ b/perl-install/c/stuff.xs.pm @@ -5,6 +5,7 @@ print ' #include <ctype.h> #include <unistd.h> +#include <syslog.h> #include <fcntl.h> #include <resolv.h> #include <sys/types.h> @@ -96,6 +97,21 @@ lseek_sector(fd, sector, offset) RETVAL void +openlog(ident) + char *ident + CODE: + openlog(ident, 0, 0); + +void +closelog() + +void +syslog(mesg) + char *mesg + CODE: + syslog(LOG_WARNING, mesg); + +void setsid() void |