1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-12-26 02:29:50 +05:30

safe_mem.h: fix the condition of memset_s availability

This commit is contained in:
Intel A80486DX2-66 2024-03-24 18:09:40 +03:00
parent 429d34fdff
commit 0f40878fbb
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -39,7 +39,7 @@
# include <windows.h>
# define secure_erase SecureZeroMemory
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
#elif __STDC_LIB_EXT1__
# define NO_SECURE_ERASE_WARRANTY 0
# define SECURE_ERASE_WARRANTY "C11+: memset_s"