Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / stdio / remove.c
1 /*
2  * remove.c - remove a file
3  */
4 /* $Id: remove.c,v 1.3 1994/06/24 11:51:08 ceriel 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 }