summaryrefslogtreecommitdiffstats
path: root/src/storage.h
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@profusion.mobi>2013-01-16 19:11:24 -0200
committerMarcel Holtmann <marcel@holtmann.org>2013-01-16 13:14:30 -0800
commite1d5dfe3aebcb0d2669ec1534cb6eba25f07dbb7 (patch)
tree033b4bd02747832e5b24ab50f3933f31b6ed038d /src/storage.h
parent544726eb2e0af67498a014c9b6d29078eb8a5daa (diff)
downloadofono-e1d5dfe3aebcb0d2669ec1534cb6eba25f07dbb7.tar.bz2
storage: Include sys/types.h for ssize_t
src/storage.h:32:1: error: unknown type name 'ssize_t' src/storage.h:36:1: error: unknown type name 'ssize_t'
Diffstat (limited to 'src/storage.h')
-rw-r--r--src/storage.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage.h b/src/storage.h
index c455bae9..70446ad8 100644
--- a/src/storage.h
+++ b/src/storage.h
@@ -26,6 +26,7 @@
#endif
#include <fcntl.h>
+#include <sys/types.h>
int create_dirs(const char *filename, const mode_t mode);