/in/foo.c: In function 'insert':
/in/foo.c:9:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=2;m>i;m--)
^~~
/in/foo.c:10:18: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
j[m]=j[m-1];break;
^~~~~
/in/foo.c:6:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
for(i=0;i<n;i++)
^~~
/in/foo.c:12:3: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
j[i]=x;
^
/in/foo.c:13:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^