storage: Include sys/types.h for ssize_t
authorLucas De Marchi <lucas.demarchi@profusion.mobi>
Wed, 16 Jan 2013 21:11:24 +0000 (19:11 -0200)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 16 Jan 2013 21:14:30 +0000 (13:14 -0800)
src/storage.h:32:1: error: unknown type name 'ssize_t'
src/storage.h:36:1: error: unknown type name 'ssize_t'

src/storage.h

index c455bae..70446ad 100644 (file)
@@ -26,6 +26,7 @@
 #endif
 
 #include <fcntl.h>
+#include <sys/types.h>
 
 int create_dirs(const char *filename, const mode_t mode);