7ab4794a05
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.
16 lines
366 B
C
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
|