mirror of
git://git.musl-libc.org/musl
synced 2024-12-22 22:53:49 +00:00
baf246e559
traditionally, both BSD and GNU systems have it this way. sys/syscall.h is purely syscall number macros. presently glibc exposes the syscall declaration in unistd.h only with _GNU_SOURCE, but that does not reflect historical practice.
7 lines
81 B
C
7 lines
81 B
C
#ifndef _SYS_SYSCALL_H
|
|
#define _SYS_SYSCALL_H
|
|
|
|
#include <bits/syscall.h>
|
|
|
|
#endif
|