syscalls.h 307 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _SPARC64_SYSCALLS_H
  3. #define _SPARC64_SYSCALLS_H
  4. struct pt_regs;
  5. asmlinkage long sparc_do_fork(unsigned long clone_flags,
  6. unsigned long stack_start,
  7. struct pt_regs *regs,
  8. unsigned long stack_size);
  9. #endif /* _SPARC64_SYSCALLS_H */