Files
Kmake/test/wasi/c/symlink_loop.c

10 lines
176 B
C
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
#include <assert.h>
#include <errno.h>
#include <stdio.h>
int main() {
FILE* file = fopen("/sandbox/subdir/loop1", "r");
assert(file == NULL);
assert(errno == ELOOP);
}