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