From 812436979ffbe1b51d1ffb84e9547e72f97a1bbf Mon Sep 17 00:00:00 2001 From: NepDisk Date: Wed, 8 Jan 2025 12:18:05 -0500 Subject: [PATCH] windows compile fix #6 I hate windows --- src/doomtype.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doomtype.h b/src/doomtype.h index 99677a54a..dfecf7afd 100644 --- a/src/doomtype.h +++ b/src/doomtype.h @@ -150,8 +150,8 @@ int strlwr(char *n); // from dosstr.c #ifdef __cplusplus extern "C" { #endif - size_t strlcat(...) - size_t strlcpy(...) + size_t strlcat(char *dst, const char *src, size_t siz); + size_t strlcpy(char *dst, const char *src, size_t siz); #ifdef __cplusplus } #endif