Chromium Code Reviews| Index: fusl/src/stdlib/gcvt.c |
| diff --git a/fusl/src/stdlib/gcvt.c b/fusl/src/stdlib/gcvt.c |
| index f29bc304e5bad0459c699422b273d6e381f2c539..a5de4f03cd4c9b3962e2e663f1bb1d20b2be12d4 100644 |
| --- a/fusl/src/stdlib/gcvt.c |
| +++ b/fusl/src/stdlib/gcvt.c |
| @@ -2,8 +2,7 @@ |
| #include <stdlib.h> |
| #include <stdio.h> |
| -char *gcvt(double x, int n, char *b) |
| -{ |
| - sprintf(b, "%.*g", n, x); |
| - return b; |
| +char* gcvt(double x, int n, char* b) { |
| + sprintf(b, "%.*g", n, x); |
| + return b; |
| } |