syscall.h 267 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __ASM_SH_SYSCALL_H
  3. #define __ASM_SH_SYSCALL_H
  4. extern const unsigned long sys_call_table[];
  5. #ifdef CONFIG_SUPERH32
  6. # include <asm/syscall_32.h>
  7. #else
  8. # include <asm/syscall_64.h>
  9. #endif
  10. #endif /* __ASM_SH_SYSCALL_H */