diff --git a/cde/config/imake/ccimake.c b/cde/config/imake/ccimake.c index db76b5894..b6604a56c 100644 --- a/cde/config/imake/ccimake.c +++ b/cde/config/imake/ccimake.c @@ -57,10 +57,11 @@ in this Software without prior written authorization from The Open Group . #endif #include +#include -main() +int main(void) { write(1, imake_ccflags, sizeof(imake_ccflags) - 1); - exit(0); + return EXIT_SUCCESS; }