diff options
author | Max Kellermann <max@duempel.org> | 2015-08-24 10:39:51 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-08-24 10:40:05 +0200 |
commit | 71fecf4d1feef7c1f4f0a60d3cd535d3ec232a1c (patch) | |
tree | bdb64fb2ab65482034046db80886c16af99047a9 /src/unix | |
parent | 0f75c79665b6481fb833b85d24f319f893745030 (diff) |
unix/PidFile: add missing include stdlib.h for strtoul()
Diffstat (limited to 'src/unix')
-rw-r--r-- | src/unix/PidFile.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unix/PidFile.hxx b/src/unix/PidFile.hxx index 3f97484a1..46b6fbb54 100644 --- a/src/unix/PidFile.hxx +++ b/src/unix/PidFile.hxx @@ -26,6 +26,7 @@ #include <assert.h> #include <unistd.h> +#include <stdlib.h> #include <fcntl.h> class PidFile { |