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
d88120f6
...
d88120f6d8721f2748bc4a0eb2bc9fe63db310c7
authored
2002-03-25 03:41:15 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fixed warning about included regex.h redefineing RE_DUP_MAX from limits.h
1 parent
f2901a21
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
mail/msgset.y
mail/msgset.y
View file @
d88120f
...
...
@@ -16,12 +16,21 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
%{
#include "mail.h"
#include <stdio.h>
#include <stdlib.h>
#include <regex.h>
#include <xalloc.h>
#include "mail.h"
/* Defined in <limits.h> on some systems, but redefined in <regex.h>
if we are using GNU's regex. So, undef it to avoid duplicate definition
warnings. */
#ifdef RE_DUP_MAX
# undef RE_DUP_MAX
#endif
#include <regex.h>
struct header_data
{
...
...
Please
register
or
sign in
to post a comment