Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
39aa762e
...
39aa762e859a5a5bd12ceafbecb3dfe901c2e44b
authored
2002-01-23 04:29:10 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Work around missing <sysexits.h>.
1 parent
4bbd9e2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
mail.local/mail.local.h
mail.local/mail.local.h
View file @
39aa762
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment