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
06e33169
...
06e331692c41154b63be68abdaef824165134599
authored
2006-05-16 08:38:34 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mh_error): Moved from mh_error.c
1 parent
e7045ced
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
mh/mh_init.c
mh/mh_init.c
View file @
06e3316
...
...
@@ -1020,3 +1020,13 @@ mh_draft_message (const char *name, const char *msgspec, char **pname)
return
rc
;
}
void
mh_error
(
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
fprintf
(
stderr
,
"%s: "
,
program_invocation_short_name
);
vfprintf
(
stderr
,
fmt
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
}
...
...
Please
register
or
sign in
to post a comment