ack/mach/proto/ncg/xmach.h
George Koehler 7ab4794a05 Reduce clang warnings from ncg
If a .c file included "types.h" before "mach.h", then it missed the
declaration of mach_option().  Fix by adding "xmach.h".

Fix mach/powerpc/ncg/mach.h and mach/vc4/ncg/mach.h to use the correct
type in their printf() format strings.
2019-10-30 18:36:55 -04:00

16 lines
366 B
C

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
/*
* Include "mach.h", then if "mach.h" defines MACH_OPTIONS, also
* declare mach_option(), a machine dependent function.
*/
#include "mach.h"
#ifdef MACH_OPTIONS
void mach_option(char *);
#endif