diff options
author | Mattias Andrée <maandree@kth.se> | 2023-12-05 20:10:48 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-12-05 20:10:48 +0100 |
commit | 6d77b155bcd4725e09837604e6ea86f5f124ba9c (patch) | |
tree | 7cfdf466bb94bbbe3e7929432bc048da5eaa2349 /linux/syscall-table.c | |
parent | Second commit (diff) | |
download | libsyscalls-6d77b155bcd4725e09837604e6ea86f5f124ba9c.tar.gz libsyscalls-6d77b155bcd4725e09837604e6ea86f5f124ba9c.tar.bz2 libsyscalls-6d77b155bcd4725e09837604e6ea86f5f124ba9c.tar.xz |
Third commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | linux/syscall-table.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/linux/syscall-table.c b/linux/syscall-table.c index 6bcd480..5a5d9c2 100644 --- a/linux/syscall-table.c +++ b/linux/syscall-table.c @@ -5,8 +5,19 @@ #include "../generated/linux-syscall-table.h" #include "../generated/linux-syscalls.h" + +#if defined(__GNUC__) +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wunused-variable" /* unused = not available on any architecutre the library is being compiled for */ +#endif + #include "syscalls.h" +#if defined(__GNUC__) +# pragma GCC diagnostic pop +#endif + + /* generated/linux-syscall-dedup.h removes references to duplicate symbols, then compiler optimisation removes them */ #if defined(__clang__) |