[UCRT] Fix build of memcpy_s.cpp

extern inline creates a global symbol on MSVC, but not on GCC. Use extern instead.
This commit is contained in:
Timo Kreuzer 2024-11-12 10:54:59 +02:00
parent fea0f9243d
commit f07ea94798

View file

@ -6,5 +6,5 @@
// Provides external definitions of the inline functions memcpy_s and memmove_s
// for use by objects compiled with older versions of the CRT headers.
//
#define _CRT_MEMCPY_S_INLINE extern __inline
#define _CRT_MEMCPY_S_INLINE extern
#include <corecrt_memcpy_s.h>