| 35 | } |
| 36 | |
| 37 | void bla1(int x) { // output reflecting a single input |
| 38 | Rprintf("hello (x = %d)\n", x); |
| 39 | } |
| 40 | |
| 41 | void bla2(int x, double y) { // output reflecting two inputs |
| 42 | Rprintf("hello (x = %d, y = %5.2f)\n", x, y); |
nothing calls this directly
no outgoing calls
no test coverage detected