samples; Fixed missing return in non-void functions
This commit is contained in:
parent
036c71d967
commit
06f2f75548
|
@ -8,4 +8,5 @@ int main()
|
||||||
{
|
{
|
||||||
int i[10];
|
int i[10];
|
||||||
foo(i);
|
foo(i);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,4 +7,5 @@ int main()
|
||||||
{
|
{
|
||||||
int i[10];
|
int i[10];
|
||||||
foo(i);
|
foo(i);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,4 +8,5 @@ int main()
|
||||||
{
|
{
|
||||||
int *c;
|
int *c;
|
||||||
foo(&c);
|
foo(&c);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,4 +9,5 @@ int main()
|
||||||
int b;
|
int b;
|
||||||
int *c = &b;
|
int *c = &b;
|
||||||
foo(&c);
|
foo(&c);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,4 +3,5 @@ int main()
|
||||||
{
|
{
|
||||||
char str[5];
|
char str[5];
|
||||||
strcpy(str, "0123456789abcdef");
|
strcpy(str, "0123456789abcdef");
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,4 +3,5 @@ int main()
|
||||||
{
|
{
|
||||||
char str[10];
|
char str[10];
|
||||||
snprintf(str, 10, "%s", "abc");
|
snprintf(str, 10, "%s", "abc");
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
return 0;
|
||||||
#ifdef A
|
#ifdef A
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -2,4 +2,5 @@ int main()
|
||||||
{
|
{
|
||||||
#ifndef A
|
#ifndef A
|
||||||
#endif
|
#endif
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue