Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
include
loongarch-linux-any
asm
unistd.h
pretty
plain
permalink
blame
history
•
9 lines
•
186 B
1
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2
3
#include <asm/bitsperlong.h>
4
5
#if __BITS_PER_LONG == 32
6
#include <asm/unistd_32.h>
7
#else
8
#include <asm/unistd_64.h>
9
#endif