source:
experiments/bulk_parse/bulk_parse.c
@
16
Revision 16, 208 bytes checked in by mmatloka, 14 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[16] | 1 | #include <stdlib.h> |
2 | #include <sys/wait.h> | |
3 | #include <stdio.h> | |
4 | ||
5 | int main(int argc, char *argv[]) | |
6 | { | |
7 | int i; | |
8 | for(i = 0;i<100;i++) | |
9 | printf("i: %d, wt: %d, m: %d\n",i,WEXITSTATUS(i), (i >> 8)&0xff); | |
10 | return 0; | |
11 | } |
Note: See TracBrowser
for help on using the repository browser.