software/libbase: add some more types

This commit is contained in:
Sebastien Bourdeauducq 2012-05-31 20:16:24 +02:00
parent fc9e723175
commit b13bc6ed64
1 changed files with 6 additions and 0 deletions

View 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.