From 4765929271fbd3a2e60b3558225d0b7fe6527095 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 10 Apr 2019 14:04:11 -0700 Subject: [PATCH] fixed perror include --- programs/timefn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/programs/timefn.c b/programs/timefn.c index 4b3b23839..cb545ad67 100644 --- a/programs/timefn.c +++ b/programs/timefn.c @@ -11,7 +11,8 @@ /* === Dependencies === */ -#include /* perror, abort */ +#include /* abort */ +#include /* perror */ #include "timefn.h"