repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kernel - Enhance CPUMASK and atomic ops
[dragonfly.git]
/
lib
/
libc
/
secure
/
stack_protector_compat.c
blob
d11145da615303ccfd3eeae7604bda6825330dc4
1
/*
2
* Written by Alexander Kabaev <kan@FreeBSD.org>
3
* The file is in public domain.
4
*
5
* $FreeBSD: head/lib/libc/secure/stack_protector_compat.c 286760 2015-08-14 03:03:13Z pfg $
6
*/
7
8
void
__stack_chk_fail
(
void
);
9
10
#ifdef PIC
11
void
12
__stack_chk_fail_local
(
void
)
13
{
14
15
__stack_chk_fail
();
16
}
17
#endif