source:
CIVL/mods/dev.civl.abc/examples/c/pointsToAnalysis/argsSubset.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 119 bytes | |
| Line | |
|---|---|
| 1 | void f(int * p, int * q) { |
| 2 | |
| 3 | } |
| 4 | |
| 5 | int main() { |
| 6 | int * p; int * q; |
| 7 | |
| 8 | int a, b; |
| 9 | p = &a; |
| 10 | q = p; |
| 11 | q = &b; |
| 12 | f(p, q); |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
