mirror of git://git.suckless.org/sbase
23 lines
331 B
C
23 lines
331 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include "util.h"
|
|
|
|
static void
|
|
usage(void)
|
|
{
|
|
eprintf("usage: unlink file\n");
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
if(argc != 2)
|
|
usage();
|
|
|
|
if(unlink(argv[1]) == -1)
|
|
eprintf("unlink: '%s':", argv[1]);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|