From e7d59f1e6ef99573b7432dbbeab25da6d7289c4b Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Mon, 23 Dec 2024 14:07:50 -0500 Subject: force binary mode for stdin (might help with a windows port?) --- uxd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/uxd.c b/uxd.c index ef86bb7..a91520c 100644 --- a/uxd.c +++ b/uxd.c @@ -188,6 +188,7 @@ void version(void) { void open_input(const char *arg) { if(!arg || (strcmp(arg, "-") == 0)) { input = stdin; + freopen(NULL, "rb", stdin); } else { input = fopen(arg, "rb"); if(!input) { -- cgit v1.2.3