From a555eb9193b0c85a581e859efb7e1d3f618dbba7 Mon Sep 17 00:00:00 2001 From: Hubert Hirtz <hubert.hirtz@laposte.net> Date: Sun, 1 Dec 2019 15:09:46 +0100 Subject: [PATCH] Remove useless inline attributes --- randomfeh.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/randomfeh.c b/randomfeh.c index 398eed9..59e6141 100644 --- a/randomfeh.c +++ b/randomfeh.c @@ -10,7 +10,7 @@ #define FEH_BIN "/usr/bin/feh" -static inline void +static void die(const char *format, ...) { va_list ap; @@ -20,7 +20,7 @@ die(const char *format, ...) exit(1); } -static inline struct timespec +static struct timespec parse_interval(const char *s) { char *end_interval; @@ -37,7 +37,7 @@ parse_interval(const char *s) return res; } -static inline void +static void spawn(const char *bin, char **argv) { pid_t p = fork(); -- GitLab