reactos/sdk/lib/ucrt/string/memcpy_s.cpp
Timo Kreuzer f07ea94798 [UCRT] Fix build of memcpy_s.cpp
extern inline creates a global symbol on MSVC, but not on GCC. Use extern instead.
2025-01-22 18:56:08 +02:00

10 lines
312 B
C++

//
// memcpy_s.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// 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
#include <corecrt_memcpy_s.h>