chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:17 +08:00
commit 4d7ba00a23
95 changed files with 6907 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
int main()
{
int ret = openat(AT_FDCWD, "/dev/tty", 0x88102, 0);
printf("return value is %d and errno is %d\n", ret, errno);
}