| 1465 | } |
| 1466 | |
| 1467 | int fs_remove(const char *filename) |
| 1468 | { |
| 1469 | if(remove(filename) != 0) |
| 1470 | return 1; |
| 1471 | return 0; |
| 1472 | } |
| 1473 | |
| 1474 | int fs_rename(const char *oldname, const char *newname) |
| 1475 | { |
nothing calls this directly
no outgoing calls
no test coverage detected