From ca98046234be95e3dc13b822ff989f422c8b48ed Mon Sep 17 00:00:00 2001 From: "John Hodge (sonata)" Date: Tue, 5 Mar 2013 15:40:10 +0800 Subject: [PATCH] Usermode/libc - Fixed switched SEEK_CUR/SEEK_SET values --- Usermode/Libraries/libc.so_src/include_exp/stdio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Usermode/Libraries/libc.so_src/include_exp/stdio.h b/Usermode/Libraries/libc.so_src/include_exp/stdio.h index 074cd254..646844ee 100644 --- a/Usermode/Libraries/libc.so_src/include_exp/stdio.h +++ b/Usermode/Libraries/libc.so_src/include_exp/stdio.h @@ -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 -- 2.20.1