systbls.S 261 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * arch/alpha/kernel/systbls.S
  4. *
  5. * The system call table.
  6. */
  7. #include <asm/unistd.h>
  8. #define __SYSCALL(nr, entry) .quad entry
  9. .data
  10. .align 3
  11. .globl sys_call_table
  12. sys_call_table:
  13. #include <asm/syscall_table.h>