stackprotector.h 205 B

123456789101112
  1. #ifndef _LINUX_STACKPROTECTOR_H
  2. #define _LINUX_STACKPROTECTOR_H 1
  3. #ifdef CONFIG_CC_STACKPROTECTOR
  4. # include <asm/stackprotector.h>
  5. #else
  6. static inline void boot_init_stack_canary(void)
  7. {
  8. }
  9. #endif
  10. #endif