mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-22 21:58:12 +08:00
7 lines
72 B
C
7 lines
72 B
C
|
#include <unistd.h>
|
||
|
|
||
|
int main(void) {
|
||
|
closefrom(3);
|
||
|
return 0;
|
||
|
}
|