Reactos

[UCRT] Fix build of memcpy_s.cpp

extern inline creates a global symbol on MSVC, but not on GCC. Use extern instead.

+1 -1
+1 -1
sdk/lib/ucrt/string/memcpy_s.cpp
··· 6 6 // Provides external definitions of the inline functions memcpy_s and memmove_s 7 7 // for use by objects compiled with older versions of the CRT headers. 8 8 // 9 - #define _CRT_MEMCPY_S_INLINE extern __inline 9 + #define _CRT_MEMCPY_S_INLINE extern 10 10 #include <corecrt_memcpy_s.h>