aboutsummaryrefslogtreecommitdiffstats
path: root/src/unix
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-08-24 10:39:51 +0200
committerMax Kellermann <max@duempel.org>2015-08-24 10:40:05 +0200
commit71fecf4d1feef7c1f4f0a60d3cd535d3ec232a1c (patch)
treebdb64fb2ab65482034046db80886c16af99047a9 /src/unix
parent0f75c79665b6481fb833b85d24f319f893745030 (diff)
downloadmpd-71fecf4d1feef7c1f4f0a60d3cd535d3ec232a1c.tar.gz
mpd-71fecf4d1feef7c1f4f0a60d3cd535d3ec232a1c.tar.xz
mpd-71fecf4d1feef7c1f4f0a60d3cd535d3ec232a1c.zip
unix/PidFile: add missing include stdlib.h for strtoul()
Diffstat (limited to 'src/unix')
-rw-r--r--src/unix/PidFile.hxx1
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 {