[Git][cmucl/cmucl][master] Apply cmucl style
Raymond Toy pushed to branch master at cmucl / cmucl Commits: 7e4f7eb9 by Raymond Toy at 2016-12-01T19:39:08-08:00 Apply cmucl style ieee754_rem_pio2 was not formatted according to cmucl style. Just re-indent. No other changes. - - - - - 1 changed file: - src/lisp/os-common.c Changes: ===================================== src/lisp/os-common.c ===================================== --- a/src/lisp/os-common.c +++ b/src/lisp/os-common.c @@ -551,18 +551,19 @@ os_guard_control_stack(int zone, int guard) /* Simple interface to __ieee754_rem_pio2 */ -int ieee754_rem_pio2(double x, double *y0, double *y1) +int +ieee754_rem_pio2(double x, double *y0, double *y1) { - extern int __ieee754_rem_pio2(double x, double *y); + extern int __ieee754_rem_pio2(double x, double *y); - double y[2]; - int n; + double y[2]; + int n; - n = __ieee754_rem_pio2(x, y); - *y0 = y[0]; - *y1 = y[1]; + n = __ieee754_rem_pio2(x, y); + *y0 = y[0]; + *y1 = y[1]; - return n; + return n; } /* View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/7e4f7eb9c7b602de22f3244fbb...
participants (1)
-
Raymond Toy