5 /* There is a global_i in foll-exec, which exec's us. We
6 should not be able to see that other definition of global_i
11 int main (int argc
, char **argv
)
13 /* There is a local_j in foll-exec, which exec's us. We
14 should not be able to see that other definition of local_j
17 int local_j
= argc
; /* after-exec */
20 printf ("Hello from execd-prog...\n");
23 printf ("expected one string argument\n");
27 printf ("argument received: %s\n", s
);