unix/PidFile: add missing include stdlib.h for strtoul()

This commit is contained in:
Max Kellermann 2015-08-24 10:39:51 +02:00
parent 0f75c79665
commit 71fecf4d1f

View File

@ -26,6 +26,7 @@
#include <assert.h> #include <assert.h>
#include <unistd.h> #include <unistd.h>
#include <stdlib.h>
#include <fcntl.h> #include <fcntl.h>
class PidFile { class PidFile {