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
49048686
...
4904868632554bde98f39c47d9e97c1b7834a9e2
authored
2002-04-27 00:15:44 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Made inclusions of <malloc.h> conditional on autoconf check.
1 parent
891c1201
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
lib/argp-help.c
messages/messages.c
lib/argp-help.c
View file @
4904868
...
...
@@ -50,7 +50,9 @@ char *alloca ();
#include <string.h>
#include <assert.h>
#include <stdarg.h>
#include <malloc.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#include <ctype.h>
#ifdef HAVE_STRINGS_H
...
...
messages/messages.c
View file @
4904868
...
...
@@ -20,7 +20,10 @@
#include <mailutils/mailutils.h>
#include <stdio.h>
#include <malloc.h>
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
#include <mu_argp.h>
...
...
Please
register
or
sign in
to post a comment