]> andersk Git - moira.git/blob - util/imake/ccimake.c
6f13d64cb536e1ce68fe16e04f5ec5692728ae1d
[moira.git] / util / imake / ccimake.c
1 /*
2  * $XConsortium: ccimake.c,v 1.12 89/10/16 12:09:23 jim Exp $
3  * 
4  * Warning:  This file must be kept as simple as posible so that it can 
5  * compile without any special flags on all systems.  Do not touch it unless
6  * you *really* know what you're doing.  Make changes in imakemdep.h, not here.
7  */
8
9 #define CCIMAKE                 /* only get imake_ccflags definitions */
10 #include "imakemdep.h"          /* things to set when porting imake */
11
12 #ifndef imake_ccflags
13 #define imake_ccflags "-O"
14 #endif
15
16 main()
17 {
18         write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
19         exit(0);
20 }
21
This page took 0.3782 seconds and 3 git commands to generate.