ack/mach/powerpc/as/mach1.c
George Koehler f4cfbedd5c Remove #include <stdbool.h> from mach/powerpc/as/mach1.c
We should not include a system header file here, because
mach/proto/as/comm2.y goes through cpp twice.  The include can cause
problems like https://github.com/davidgiven/ack/issues/1

Remove this include #<stdbool.h> and leave a comment pointing to the
includes in comm0.h.  Change the few instances of bool, false, true,
to int, 0, 1.
2017-01-30 16:39:23 -05:00

11 lines
208 B
C

/*
* $Source$
* $State$
*/
/*
* Do not #include anything here. Do it in mach/proto/as/comm0.h
*/
extern word_t emit_hi(struct expr_t* expr, int is_signed);
extern word_t emit_lo(struct expr_t* expr);