mirror of https://github.com/t1meshift/os_labs.git
10 lines
147 B
C
10 lines
147 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main() {
|
||
|
if (unlink("test.txt") != 0) {
|
||
|
printf("Unlink error.");
|
||
|
return -1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|