software/libbase: add some more types
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Thu, 31 May 2012 18:16:24 +0000 (20:16 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Thu, 31 May 2012 18:16:24 +0000 (20:16 +0200)
software/include/base/stdio.h

index c384f7bc9b2dd48f4ab0097a18cb1fec3ce4b8e1..58c908ec467f874d71af9a523195227448b45c2b 100644 (file)
@@ -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.