mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
22 lines
737 B
C
22 lines
737 B
C
// DR. ROBOTNIK'S RING RACERS
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2024 by Kart Krew.
|
|
// Copyright (C) 2020 by Sonic Team Junior.
|
|
// Copyright (C) 2000 by DooM Legacy Team.
|
|
// Copyright (C) 1996 by id Software, Inc.
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file m_memcpy.c
|
|
/// \brief (formerly) X86 optimized implementations of M_Memcpy
|
|
|
|
#include "doomdef.h"
|
|
#include "m_misc.h"
|
|
|
|
void *M_Memcpy(void* dest, const void* src, size_t n)
|
|
{
|
|
memcpy(dest, src, n);
|
|
return dest;
|
|
}
|