ack/util/ceg/ce_back/obj_back/con4.c
1987-11-20 10:41:03 +00:00

16 lines
201 B
C

#include "mach.h"
con4( l)
FOUR_BYTES l;
{
#ifdef WORDS_REVERSED
con2( (short) ((unsigned long)l>>16));
con2( (short) l);
#else
con2( (short) l);
con2( (short) ((unsigned long)l>>16));
#endif
}