commit 03366a5e0bd53febbcf2eee2344871d1a019e40a
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Sat Feb 18 20:32:49 2017 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Sat Feb 18 20:32:49 2017 +0100

    [libc] Add fpost_t to stdio.h

diff --git a/libc/include/bits/amd64-sysv/arch/stdio.h 
b/libc/include/bits/amd64-sysv/arch/stdio.h
index d35960e..78ea716 100644
--- a/libc/include/bits/amd64-sysv/arch/stdio.h
+++ b/libc/include/bits/amd64-sysv/arch/stdio.h
@@ -16,3 +16,4 @@ typedef unsigned long size_t;
 #define L_tmpnam      256
 
 typedef struct _FILE FILE;
+typedef int fpos_t;
diff --git a/libc/include/bits/i386-sysv/arch/stdio.h 
b/libc/include/bits/i386-sysv/arch/stdio.h
index d35960e..3cb4b93 100644
--- a/libc/include/bits/i386-sysv/arch/stdio.h
+++ b/libc/include/bits/i386-sysv/arch/stdio.h
@@ -16,3 +16,4 @@ typedef unsigned long size_t;
 #define L_tmpnam      256
 
 typedef struct _FILE FILE;
+typedef long fpos_t;
diff --git a/libc/include/bits/qbe/arch/stdio.h 
b/libc/include/bits/qbe/arch/stdio.h
index d35960e..78ea716 100644
--- a/libc/include/bits/qbe/arch/stdio.h
+++ b/libc/include/bits/qbe/arch/stdio.h
@@ -16,3 +16,4 @@ typedef unsigned long size_t;
 #define L_tmpnam      256
 
 typedef struct _FILE FILE;
+typedef int fpos_t;
diff --git a/libc/include/bits/z80/arch/stdio.h 
b/libc/include/bits/z80/arch/stdio.h
index cfd0d3d..fa5cc26 100644
--- a/libc/include/bits/z80/arch/stdio.h
+++ b/libc/include/bits/z80/arch/stdio.h
@@ -16,3 +16,4 @@ typedef unsigned size_t;
 #define L_tmpnam      256
 
 typedef struct _FILE FILE;
+typedef long fpos_t;

Reply via email to