]> Pileus Git - ~andy/linux/blob - include/linux/stackprotector.h
stackprotector: add boot_init_stack_canary()
[~andy/linux] / include / linux / stackprotector.h
1 #ifndef _LINUX_STACKPROTECTOR_H
2 #define _LINUX_STACKPROTECTOR_H 1
3
4 #ifdef CONFIG_CC_STACKPROTECTOR
5 # include <asm/stackprotector.h>
6 #else
7 static inline void boot_init_stack_canary(void)
8 {
9 }
10 #endif
11
12 #endif