Fixed a c library issue with wrong valued SEEK_SET SEEK_CUR ...

This commit is contained in:
Bahadir Balban
2009-10-09 16:53:37 +03:00
parent d39ffc6acd
commit 13c7a6476d
2 changed files with 9 additions and 9 deletions

View File

@@ -136,14 +136,14 @@ typedef long fpos_t; /* same */
#define FILENAME_MAX 37
#define L_tmpnam 37
#ifndef SEEK_SET
#define SEEK_SET 0
#endif
#ifndef SEEK_CUR
#define SEEK_CUR 0
#define SEEK_CUR 1
#endif
#ifndef SEEK_END
#define SEEK_END 1
#endif
#ifndef SEEK_SET
#define SEEK_SET 2
#define SEEK_END 2
#endif
#define TMP_MAX 37