9 lines
152 B
C
9 lines
152 B
C
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
link("./unlink.c", "./unlink.out");
|
|
perror("unlink");
|
|
return 0;
|
|
}
|