1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Fix basic compiler warnings in ccimake.c

main() always returns an int.
This commit is contained in:
David Cantrell 2012-08-21 21:51:06 -04:00
parent 8d32067a4a
commit 6d46aca1b1

View file

@ -57,10 +57,11 @@ in this Software without prior written authorization from The Open Group .
#endif
#include <stdlib.h>
#include <unistd.h>
main()
int main(void)
{
write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
exit(0);
return EXIT_SUCCESS;
}