From 7b523e7c50ba430e3b25438c3ac33eaa86549fc4 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Tue, 21 Mar 2017 13:20:42 -0700 Subject: vmon: uninline is_flag mistaken inline I think I've developed a force of habit typing `static inline` after the ray tracer in rototiller. --- src/vmon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vmon.c b/src/vmon.c index 9cb797b..c554a50 100644 --- a/src/vmon.c +++ b/src/vmon.c @@ -55,7 +55,7 @@ typedef struct vmon_t { static volatile int got_sigchld; /* return if arg == flag or altflag if provided */ -static inline int is_flag(const char *arg, const char *flag, const char *altflag) +static int is_flag(const char *arg, const char *flag, const char *altflag) { assert(arg); assert(flag); -- cgit v1.2.3