From b13bc6ed6447650d0b97c55bdb78ecae4c638fdc Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 31 May 2012 20:16:24 +0200 Subject: [PATCH] software/libbase: add some more types --- software/include/base/stdio.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/software/include/base/stdio.h b/software/include/base/stdio.h index c384f7bc9..58c908ec4 100644 --- a/software/include/base/stdio.h +++ b/software/include/base/stdio.h @@ -12,6 +12,12 @@ int sprintf(char *buf, const char *fmt, ...); int printf(const char *fmt, ...); +/* Not sure this belongs here... */ +typedef long long loff_t; +typedef long off_t; +typedef int mode_t; +typedef int dev_t; + /* * Note: this library does not provide FILE operations. * User code must implement them.