forked from len0rd/rockbox
just defensivelt check for defined defines before we define them
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1524 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d52f113442
commit
2ec1e170ab
1 changed files with 6 additions and 0 deletions
|
@ -22,9 +22,15 @@
|
|||
|
||||
#define MAX_PATH 260
|
||||
|
||||
#ifndef SEEK_SET
|
||||
#define SEEK_SET 0
|
||||
#endif
|
||||
#ifndef SEEK_CUR
|
||||
#define SEEK_CUR 1
|
||||
#endif
|
||||
#ifndef SEEK_END
|
||||
#define SEEK_END 2
|
||||
#endif
|
||||
|
||||
#ifndef O_RDONLY
|
||||
#define O_RDONLY 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue