strerror is declared in <string.h>
errno is declared in <errno.h>
This commit is contained in:
parent
4aafaabe64
commit
eef5485b2b
@ -1,3 +1,5 @@
|
|||||||
|
/* $FreeBSD$ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* report() - calls syslog
|
* report() - calls syslog
|
||||||
*/
|
*/
|
||||||
@ -10,6 +12,8 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <syslog.h>
|
#include <syslog.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
#include "report.h"
|
#include "report.h"
|
||||||
|
|
||||||
@ -135,9 +139,6 @@ report(priority, fmt, va_alist)
|
|||||||
char *
|
char *
|
||||||
get_errmsg()
|
get_errmsg()
|
||||||
{
|
{
|
||||||
extern int errno;
|
|
||||||
extern char *strerror();
|
|
||||||
|
|
||||||
return strerror(errno);
|
return strerror(errno);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user