diff options
Diffstat (limited to 'sysdeps/unix/sysdep.h')
-rw-r--r-- | sysdeps/unix/sysdep.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/unix/sysdep.h b/sysdeps/unix/sysdep.h index dc8c0b34d2..e56e30ea88 100644 --- a/sysdeps/unix/sysdep.h +++ b/sysdeps/unix/sysdep.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 92, 93, 96 Free Software Foundation, Inc. +/* Copyright (C) 1991, 92, 93, 96, 98 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -47,3 +47,7 @@ #ifndef PSEUDO_END #define PSEUDO_END(sym) #endif + +/* Wrappers around system calls should normally inline the system call code. + But sometimes it is not possible or implemented and we use this code. */ +#define INLINE_SYSCALL(name, nr, args...) __syscall_##name (args) |