Win32: Make waring 4013 error

```
'function' undefined; assuming extern returning int
The compiler encountered a call to an undefined function.
```
This commit is contained in:
Nobuyoshi Nakada 2024-11-30 21:37:09 +09:00
parent 0fc70022e6
commit 091c7d4a54
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2024-12-01 09:02:21 +00:00

View File

@ -279,7 +279,7 @@ COMPILERFLAG = -Zm600
!if $(MSC_VER) >= 1400
WARNFLAGS = -W2 -wd4100 -wd4127 -wd4210 -wd4214 -wd4255 -wd4574 \
-wd4668 -wd4710 -wd4711 -wd4820 -wd4996 \
-we4028 -we4142 -we4047
-we4028 -we4142 -we4047 -we4013
!else
WARNFLAGS = -W2
!endif