freebsd-src/lib/libc/secure/Symbol.map
Kyle Evans 0c47b9c211 include: ssp: don't shadow the mempcpy builtin
GCC emits a warning about shadowing a builtin with our mempcpy
declaration, so switch it to using the same model as memcpy() and
use the apparently-existing __builtin___mempcpy_chk().

Reviewed by:	kib (earlier version), markj
Sponsored by:	Klara, Inc.
Sponsored by:	Stormshield
Differential Revision:	https://reviews.freebsd.org/D45976
2024-07-16 00:12:28 -05:00

26 lines
350 B
Plaintext

FBSD_1.0 {
__chk_fail;
__stack_chk_fail;
__stack_chk_guard;
};
FBSD_1.8 {
__fgets_chk;
__memcpy_chk;
__memmove_chk;
__mempcpy_chk;
__memset_chk;
__snprintf_chk;
__sprintf_chk;
__stpcpy_chk;
__stpncpy_chk;
__strcat_chk;
__strcpy_chk;
__strlcat_chk;
__strncat_chk;
__strlcpy_chk;
__strncpy_chk;
__vsnprintf_chk;
__vsprintf_chk;
};