From 5090e950038102e6e658e94a207099fe12034e78 Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 15 Sep 2020 16:50:55 -0700 Subject: [PATCH] dump basics to stdout on other platforms --- one.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/one.cpp b/one.cpp index 112ae7a94..500553a8d 100644 --- a/one.cpp +++ b/one.cpp @@ -1149,6 +1149,8 @@ static int cli(int argc,char **argv) } write(fd, dump.str().c_str(), dump.str().size()); close(fd); +#else + fprintf(stderr, "%s", dump.str().c_str()); #endif // fprintf(stderr, "%s\n", dump.str().c_str());