Chromium Code Reviews| Index: fusl/src/stdlib/ldiv.c |
| diff --git a/fusl/src/stdlib/ldiv.c b/fusl/src/stdlib/ldiv.c |
| index 36eb960b09784f12013d34d9b28a16d2a4e1c296..423a151e2244c0302361e89160ffd30bf1c7a0de 100644 |
| --- a/fusl/src/stdlib/ldiv.c |
| +++ b/fusl/src/stdlib/ldiv.c |
| @@ -1,6 +1,5 @@ |
| #include <stdlib.h> |
| -ldiv_t ldiv(long num, long den) |
| -{ |
| - return (ldiv_t){ num/den, num%den }; |
| +ldiv_t ldiv(long num, long den) { |
| + return (ldiv_t){num / den, num % den}; |
| } |