| 1 | /* |
| 2 | * Intel x86_64 sigcode for bsd-user |
| 3 | * |
| 4 | * Copyright (c) 2013 Stacey D. Son |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | #ifndef TARGET_ARCH_SIGTRAMP_H |
| 9 | #define TARGET_ARCH_SIGTRAMP_H |
| 10 | |
| 11 | static inline abi_long setup_sigtramp(abi_ulong offset, unsigned sigf_uc, |
| 12 | unsigned sys_sigreturn) |
| 13 | { |
| 14 | return 0; |
| 15 | } |
| 16 | #endif /* TARGET_ARCH_SIGTRAMP_H */ |