Ver código fonte

Initial revision

kaashoek 36 anos atrás
pai
commit
d32d3c6199
1 arquivos alterados com 13 adições e 0 exclusões
  1. 13 0
      util/ceg/ce_back/obj_back/text4.c

+ 13 - 0
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
+}