Files
UnrealEngine/Engine/Source/Runtime/SymsLib/syms/overrides/syms_default_overrides.c
2025-05-18 13:04:45 +08:00

16 lines
354 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#ifndef SYMS_DEFAULT_OVERRIDES_C
#define SYMS_DEFAULT_OVERRIDES_C
// NOTE(allen): get os specific override implementations
#if SYMS_OS_WINDOWS
# include "syms_win32_overrides.c"
#elif SYMS_OS_LINUX
# include "syms_unix_overrides.c"
#else
# error No 'default' implementation for this OS
#endif
#endif