From 57360bb4fd79b358b36d2877db26ac828d1fdfcb Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 20 Feb 2020 18:54:04 +0200 Subject: [PATCH] tuklib_exit: Add missing header. strerror() needs which happened to be included via tuklib_common.h -> tuklib_config.h -> sysdefs.h if HAVE_CONFIG_H was defined. This wasn't tested without config.h before so it had worked fine. --- src/common/tuklib_exit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/tuklib_exit.c b/src/common/tuklib_exit.c index c393be64..aa55620e 100644 --- a/src/common/tuklib_exit.c +++ b/src/common/tuklib_exit.c @@ -14,6 +14,7 @@ #include #include +#include #include "tuklib_gettext.h" #include "tuklib_progname.h"