Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dmitry Baryshkov
nettle
Commits
4351c027
Commit
4351c027
authored
Jun 25, 2014
by
Niels Möller
Browse files
Don't use gmp_vfprintf.
parent
ec593a78
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
4351c027
2014-06-25 Niels Möller <nisse@lysator.liu.se>
* testsuite/testutils.c (die): Use plain vfprintf, not
gmp_vfprintf.
* der-iterator.c: Deleted HAVE_LIBGMP conditionals.
2014-06-07 Niels Möller <nisse@lysator.liu.se>
...
...
testsuite/testutils.c
View file @
4351c027
...
...
@@ -37,11 +37,7 @@ die(const char *format, ...)
{
va_list
args
;
va_start
(
args
,
format
);
#if WITH_HOGWEED
gmp_vfprintf
(
stderr
,
format
,
args
);
#else
vfprintf
(
stderr
,
format
,
args
);
#endif
va_end
(
args
);
abort
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment