diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2021-09-29 21:48:20 +0000 |
|---|---|---|
| committer | Kyle Evans <kevans@FreeBSD.org> | 2021-10-06 07:14:42 +0000 |
| commit | a663c839fffa6450dced705a68633dd6fedb70cb (patch) | |
| tree | 81ab9f9f202f7bb63700edb36b185fa7ef28fbdb /lib/libc/secure/stack_protector.c | |
| parent | d330c24cc061f87decc678d4d471a61088d730b3 (diff) | |
Diffstat (limited to 'lib/libc/secure/stack_protector.c')
| -rw-r--r-- | lib/libc/secure/stack_protector.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/secure/stack_protector.c b/lib/libc/secure/stack_protector.c index 15460278502d..7ddd6338ec55 100644 --- a/lib/libc/secure/stack_protector.c +++ b/lib/libc/secure/stack_protector.c @@ -64,9 +64,9 @@ extern int __sysctl(const int *name, u_int namelen, void *oldp, long __stack_chk_guard[8] = {0, 0, 0, 0, 0, 0, 0, 0}; static void __guard_setup(void) _GUARD_SETUP_CTOR_ATTR; -static void __fail(const char *); -void __stack_chk_fail(void); -void __chk_fail(void); +static void __fail(const char *) __dead2; +void __stack_chk_fail(void) __dead2; +void __chk_fail(void) __dead2; /*LINTED used*/ static void |
