diff --git a/src/withsctp/checksctp.c b/src/withsctp/checksctp.c index 9e50866..bda9c1d 100644 --- a/src/withsctp/checksctp.c +++ b/src/withsctp/checksctp.c @@ -30,6 +30,7 @@ */ #include #include +#include #include #include @@ -39,7 +40,7 @@ */ #define SHOULD_IPPROTO_SCTP 132 -main() +int main(void) { int fd; @@ -53,5 +54,5 @@ main() } close(fd); - exit(0); + return 0; }