mirror of
https://github.com/reactos/reactos.git
synced 2025-03-01 03:45:16 +00:00
[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:
parent
fea0f9243d
commit
f07ea94798
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue