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" { ...@@ -33,10 +33,10 @@ extern "C" {
#endif #endif
char * char *
g_fmt(register char *b, double x) g_fmt(char *b, double x)
{ {
register int i, k; int i, k;
register char *s; char *s;
int decpt, j, sign; int decpt, j, sign;
char *b0, *s0, *se; 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