Commit 39aa762e 39aa762e859a5a5bd12ceafbecb3dfe901c2e44b by Sam Roberts

Work around missing <sysexits.h>.

1 parent 4bbd9e2e
......@@ -28,13 +28,26 @@
#include <grp.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <sysexits.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include "getopt.h"
#ifdef HAVE_SYSEXITS_H
# include <sysexits.h>
#endif
#ifndef EX_OK
# define EX_OK 0
#endif
#ifndef EX_UNAVAILABLE
# define EX_UNAVAILABLE 1
#endif
#ifndef EX_TEMPFAIL
# define EX_TEMPFAIL 2
#endif
#ifdef HAVE_STRINGS_H
# include <strings.h>
#endif
......