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
ac294bfb
...
ac294bfbdef79bbaf188fb56fe7622ea4c21771c
authored
2002-08-13 13:32:30 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Provide declarations for vasprintf,asprintf if necessary.
1 parent
c5a037c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
lib/mu_asprintf.c
lib/mu_asprintf.c
View file @
ac294bf
...
...
@@ -15,7 +15,17 @@
*/
#include "mu_asprintf.h"
#if !HAVE_DECL_VASPRINTF
extern
int
vasprintf
__P
((
char
**
result
,
const
char
*
format
,
va_list
args
));
#endif
#if !HAVE_DECL_ASPRINTF
#if __STDC__
extern
int
asprintf
__P
((
char
**
result
,
const
char
*
format
,
...));
#else
extern
int
asprintf
();
#endif
#endif
int
mu_vasprintf
(
char
**
result
,
const
char
*
format
,
va_list
*
args
)
{
...
...
Please
register
or
sign in
to post a comment