Usermode/libc - Fixed switched SEEK_CUR/SEEK_SET values
authorJohn Hodge (sonata) <[email protected]>
Tue, 5 Mar 2013 07:40:10 +0000 (15:40 +0800)
committerJohn Hodge (sonata) <[email protected]>
Tue, 5 Mar 2013 07:40:10 +0000 (15:40 +0800)
Usermode/Libraries/libc.so_src/include_exp/stdio.h

index 074cd25..646844e 100644 (file)
@@ -17,8 +17,8 @@ typedef struct sFILE  FILE;
 #define BUFSIZ 1024
 
 #ifndef SEEK_CUR
-#define SEEK_CUR       1
-#define SEEK_SET       0
+#define SEEK_CUR       0
+#define SEEK_SET       1
 #define SEEK_END       (-1)
 #endif
 

UCC git Repository :: git.ucc.asn.au