| stdio_wrap.c | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 0 | 4 | 0.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | n/a | ||
| pod | n/a | ||
| total | 0 | 4 | 0.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | /* | ||||||
| 2 | * Access to the std I/O routines for people using sfio | ||||||
| 3 | * stdio FILE operators are needed by getmntent(3) | ||||||
| 4 | */ | ||||||
| 5 | |||||||
| 6 | #include |
||||||
| 7 | |||||||
| 8 | 0 | FILE *std_fopen(const char *filename, const char *mode) | |||||
| 9 | { | ||||||
| 10 | 0 | return fopen(filename, mode); | |||||
| 11 | } | ||||||
| 12 | |||||||
| 13 | 0 | int std_fclose(FILE *fd) | |||||
| 14 | { | ||||||
| 15 | 0 | return fclose(fd); | |||||
| 16 | } | ||||||
| 17 |