From d630ef7d01890a8d32638395ffa163b8cf02424b Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 13 Jan 2021 15:34:19 -0500 Subject: Support long double in c.sh --- bin/c.sh | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bin') diff --git a/bin/c.sh b/bin/c.sh index 4439aaee..74e3f95a 100644 --- a/bin/c.sh +++ b/bin/c.sh @@ -69,6 +69,7 @@ if [ -n "${type}" ]; then unsigned long long: "(unsigned long long) ", float: "(float) ", double: "(double) ", + long double: "(long double) ", default: "(void *) " ) ); @@ -97,6 +98,7 @@ if [ -n "${expr}" ]; then unsigned long long: "%llu\n", float: "%g\n", double: "%g\n", + long double: "%Lg\n", default: "%p\n" ), ${expr} -- cgit 1.4.1 b'>this commit dontfiles
summary refs log tree commit diff
path: root/doc/zlib/zlibCompileFlags.3 (unfollow)
Commit message (Collapse)Author
2022-06-02Clean up parsing a littleJune McEnroe
2022-06-02Don't duplicate path stringJune McEnroe
2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe
For some reason I haven't been able to figure out, trying to poll /dev/tty returns POLLNVAL (and this was using 100% CPU looping), but using stderr instead works fine.
2022-06-02Add initial working version of qfJune McEnroe
2022-05-29Set prompt for okshJune McEnroeSet prompt for okshJune McEnroe