Unverified Commit fc21fd19 authored by Peter Eastman's avatar Peter Eastman Committed by GitHub
Browse files

Compile correctly under newer C++ standards (#5296)

parent c6f9fab2
......@@ -33,10 +33,10 @@ extern "C" {
#endif
char *
g_fmt(register char *b, double x)
g_fmt(char *b, double x)
{
register int i, k;
register char *s;
int i, k;
char *s;
int decpt, j, sign;
char *b0, *s0, *se;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment