source:
trunk/minix/lib/stdio/remove.c@
22
| Last change on this file since 22 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 244 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | /* |
| 2 | * remove.c - remove a file | |
| 3 | */ | |
| 4 | /* $Header: /cvsup/minix/src/lib/stdio/remove.c,v 1.1.1.1 2005/04/21 14:56:36 beng Exp $ */ | |
| 5 | ||
| 6 | #include <stdio.h> | |
| 7 | ||
| 8 | int _unlink(const char *path); | |
| 9 | ||
| 10 | int | |
| 11 | remove(const char *filename) { | |
| 12 | return _unlink(filename); | |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.