mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-14 22:31:56 +00:00
16 lines
236 B
C++
16 lines
236 B
C++
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
|
|
int main()
|
|
{
|
|
if (!fork()) {
|
|
for (;;) {
|
|
mkdir("/tmp/x", 0666);
|
|
rmdir("/tmp/x");
|
|
}
|
|
}
|
|
for (;;) {
|
|
chdir("/tmp/x");
|
|
}
|
|
return 0;
|
|
}
|