mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
11 lines
266 B
C
11 lines
266 B
C
|
/* Aliases for basic Mach system calls:
|
||
|
mach_task_self -> __mach_task_self, etc. */
|
||
|
|
||
|
#include <gnu-stabs.h>
|
||
|
|
||
|
#define SYSCALL(name, number, type, args, typed_args) \
|
||
|
function_alias (name, __##name, type, args, \
|
||
|
name typed_args)
|
||
|
|
||
|
#include "mach_syscalls.h"
|