9 lines
81 B
C
9 lines
81 B
C
|
/* $Header$ */
|
||
|
|
||
|
int
|
||
|
sys_unlock(path)
|
||
|
char *path;
|
||
|
{
|
||
|
return unlink(path) == 0;
|
||
|
}
|