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:
parent
8d32067a4a
commit
6d46aca1b1
1 changed files with 3 additions and 2 deletions
|
@ -57,10 +57,11 @@ in this Software without prior written authorization from The Open Group .
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
main()
|
int main(void)
|
||||||
{
|
{
|
||||||
write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
|
write(1, imake_ccflags, sizeof(imake_ccflags) - 1);
|
||||||
exit(0);
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue