syscalls.h 473 B

123456789101112131415161718192021
  1. /*
  2. * syscalls.h - Linux syscall interfaces (arch-specific)
  3. *
  4. * Copyright (c) 2008 Jaswinder Singh
  5. *
  6. * This file is released under the GPLv2.
  7. * See the file COPYING for more details.
  8. */
  9. #ifndef _ASM_AVR32_SYSCALLS_H
  10. #define _ASM_AVR32_SYSCALLS_H
  11. #include <linux/compiler.h>
  12. #include <linux/linkage.h>
  13. #include <linux/types.h>
  14. #include <linux/signal.h>
  15. /* mm/cache.c */
  16. asmlinkage int sys_cacheflush(int, void __user *, size_t);
  17. #endif /* _ASM_AVR32_SYSCALLS_H */