From: kaashoek Date: Fri, 27 May 1988 17:07:58 +0000 (+0000) Subject: Initial revision X-Git-Tag: release-5-5~3245 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2edf3315d6afb96dd166d39eb6e4f87686e2e421;p=ack.git Initial revision --- diff --git a/util/ceg/ce_back/obj_back/text4.c b/util/ceg/ce_back/obj_back/text4.c new file mode 100644 index 000000000..6b318f3da --- /dev/null +++ b/util/ceg/ce_back/obj_back/text4.c @@ -0,0 +1,13 @@ +#include "mach.h" + +text4( l) +FOUR_BYTES l; +{ +#ifdef WORDS_REVERSED + text2( (short) ((unsigned long)l>>16)); + text2( (short) l); +#else + text2( (short) l); + text2( (short) ((unsigned long)l>>16)); +#endif +}