scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 03366a5e0bd53febbcf2eee2344871d1a019e40a
parent c3b8df5d888d727010ce40ba9798089f5343f32c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 18 Feb 2017 20:32:49 +0100

[libc] Add fpost_t to stdio.h

Diffstat:
Mlibc/include/bits/amd64-sysv/arch/stdio.h | 1+
Mlibc/include/bits/i386-sysv/arch/stdio.h | 1+
Mlibc/include/bits/qbe/arch/stdio.h | 1+
Mlibc/include/bits/z80/arch/stdio.h | 1+
4 files changed, 4 insertions(+), 0 deletions(-)

diff --git 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 @@ -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 @@ -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 @@ -16,3 +16,4 @@ typedef unsigned size_t; #define L_tmpnam 256 typedef struct _FILE FILE; +typedef long fpos_t;