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
0068435e
...
0068435e586545bf338361ca5b80f152dc26b1a4
authored
2002-12-04 23:25:33 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Include local copy of getopt.h if the system does not provide one.
1 parent
79cd36be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
include/mailutils/gnu/argp.h
include/mailutils/gnu/argp.h
View file @
0068435
...
...
@@ -23,7 +23,12 @@
#include <stdio.h>
#include <ctype.h>
#include <getopt.h>
#ifdef HAVE_GETOPT_H
# include <getopt.h>
#else
# include <mailutils/gnu/getopt.h>
#endif
#define __need_error_t
#include <errno.h>
...
...
Please
register
or
sign in
to post a comment