diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-10-16 21:13:08 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-10-16 21:13:08 +0100 |
commit | 391e621edcce45082d6581d3461bb07b9a8418c7 (patch) | |
tree | 9c7eef2d1a7a27724533fca286eaf4763b136733 | |
parent | 8f8d4054d72e9628c6442a4561b0e3880774c3fd (diff) | |
download | rspamd-391e621edcce45082d6581d3461bb07b9a8418c7.tar.gz rspamd-391e621edcce45082d6581d3461bb07b9a8418c7.zip |
[Minor] Add missing math.h include
-rw-r--r-- | src/libutil/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/util.c b/src/libutil/util.c index d1332d504..f785f0575 100644 --- a/src/libutil/util.c +++ b/src/libutil/util.c @@ -70,6 +70,7 @@ #ifdef HAVE_SYS_RESOURCE_H #include <sys/resource.h> #endif +#include <math.h> /* for pow */ #include "cryptobox.h" |