Chromium Code Reviews| Index: fusl/src/stdlib/imaxdiv.c |
| diff --git a/fusl/src/stdlib/imaxdiv.c b/fusl/src/stdlib/imaxdiv.c |
| index b2ce821f51e3e2428e773e2e9eae6c2156157fb6..248854f7f2edb9b0dfea9a6db9b9c9d6b8e0672d 100644 |
| --- a/fusl/src/stdlib/imaxdiv.c |
| +++ b/fusl/src/stdlib/imaxdiv.c |
| @@ -1,6 +1,5 @@ |
| #include <inttypes.h> |
| -imaxdiv_t imaxdiv(intmax_t num, intmax_t den) |
| -{ |
| - return (imaxdiv_t){ num/den, num%den }; |
| +imaxdiv_t imaxdiv(intmax_t num, intmax_t den) { |
| + return (imaxdiv_t){num / den, num % den}; |
| } |