X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Ffixnump.h;h=9681520e24fa361be9db8404500c5f867fc29fc9;hb=f17e3d27d7ff599f9443d011d17017a2a858c81a;hp=cb56fe060743fd54a40fc2d7558443f5d7f9a0a7;hpb=a608f5895479f67690a819a781cdb75641b13c61;p=sbcl.git diff --git a/src/runtime/fixnump.h b/src/runtime/fixnump.h index cb56fe0..9681520 100644 --- a/src/runtime/fixnump.h +++ b/src/runtime/fixnump.h @@ -12,11 +12,12 @@ #ifndef _FIXNUMP_H #define _FIXNUMP_H -static inline int fixnump(lispobj obj) { - return((obj & - (LOWTAG_MASK & - (~(EVEN_FIXNUM_LOWTAG|ODD_FIXNUM_LOWTAG)))) - == 0); +static inline int fixnump(lispobj obj) +{ + return((obj & + (LOWTAG_MASK & + (~(EVEN_FIXNUM_LOWTAG|ODD_FIXNUM_LOWTAG)))) + == 0); } #endif