函数调用R-1-7-9强制

禁止非 void 函数的 return 语句不带值

有返回值函数的返回语句不带返回值
test.c
1int foo(void)
2{
3 return;
禁止非 void 函数的 return 语句不带值 [gjb8114-r-1-7-9]
4}