From 723fd3be917570ec3b2605b2e9c8c4e83a8f78e9 Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Sun, 9 Feb 2025 22:36:30 -0500 Subject: Allow compilation with -O0 * libshouldbeinlibc/lcm.c: make gcd static since it's not exposed as a symbol. * pfinet/linux-src/net/ipv4/{tcp,udp}_ipv4.c: Drop inline from lookup functions since they are used in another module (icmp.c) and shouldn't be removed. * term/munge.c: make poutput static since it's not exposed as a symbol. Message-ID: --- term/munge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'term/munge.c') diff --git a/term/munge.c b/term/munge.c index 3b304605..0903dd03 100644 --- a/term/munge.c +++ b/term/munge.c @@ -38,7 +38,7 @@ int output_psize; /* Actually drop character onto output queue. This should be the only place where we actually enqueue characters on the output queue; it is responsible for keeping track of cursor positions. */ -inline void +static inline void poutput (int c) { if (termflags & FLUSH_OUTPUT) -- cgit v1.2.3