1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r15355: Add replacement 'err.h' for systems that don't have it such as SerNet-Tru64

(This used to be commit 2961d545fb)
This commit is contained in:
Jelmer Vernooij 2006-04-30 03:09:32 +00:00 committed by Gerald (Jerry) Carter
parent 9c3145a270
commit 4bdc83ad5c
2 changed files with 9 additions and 0 deletions

View File

@ -36,6 +36,7 @@ esac
AC_CHECK_HEADERS([ \
crypt.h \
curses.h \
err.h \
errno.h \
inttypes.h \
netdb.h \

View File

@ -0,0 +1,8 @@
#ifndef _ERR_H
#define _ERR_H 1
void err(int eval, const char *format, ...);
void errx(int eval, const char *format, ...);
void warnx(const char *format, ...);
#endif /* err.h */