1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-12 02:05:30 +00:00

Fix bug in bool typedef related to slirp_glue

This commit is contained in:
Raphael Hoefler
2025-10-27 09:57:09 +01:00
committed by Paul Koning
parent b7a1656f5c
commit 586bbc694f

View File

@@ -12,7 +12,7 @@ typedef int SOCKET;
#endif
#ifndef __cplusplus
#if __STDC_VERSION__ >= 202300L
#if __STDC_VERSION__ < 202300L
typedef int bool;
#endif
#endif