mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 08:43:23 +00:00
0c47b9c211
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
26 lines
350 B
Plaintext
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;
|
|
};
|