From 562ef68399b7ea9528df84cc9fdfcb22a82a6cb3 Mon Sep 17 00:00:00 2001 From: Rageking8 <106309953+Rageking8@users.noreply.github.com> Date: Thu, 1 Aug 2024 09:48:28 +0800 Subject: [PATCH] Fix minor issue with NativeLibrary README --- core/nativeaot/NativeLibrary/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/nativeaot/NativeLibrary/README.md b/core/nativeaot/NativeLibrary/README.md index 01aa97e1f3b..804f643c532 100644 --- a/core/nativeaot/NativeLibrary/README.md +++ b/core/nativeaot/NativeLibrary/README.md @@ -26,7 +26,7 @@ The first thing you'll have to do in order to have a proper "loader" that loads ```c #ifdef _WIN32 #include "windows.h" -#define symLoad GetProcAddress GetProcAddress +#define symLoad GetProcAddress #else #include "dlfcn.h" #define symLoad dlsym