From 41cc3fd56384731cbc5b735949afc1af060734a0 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sat, 7 Jan 2023 15:33:40 +0100 Subject: [PATCH] Remove now-unused _strdup() define --- src/openrct2/common.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/openrct2/common.h b/src/openrct2/common.h index d45be380d6..31c3f7bc90 100644 --- a/src/openrct2/common.h +++ b/src/openrct2/common.h @@ -41,7 +41,6 @@ using colour_t = uint8_t; # define _strcmpi _stricmp # define _stricmp(x, y) strcasecmp((x), (y)) # define _strnicmp(x, y, n) strncasecmp((x), (y), (n)) -# define _strdup(x) strdup((x)) # if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ # define RCT2_ENDIANNESS __ORDER_LITTLE_ENDIAN__