Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix function types and typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Joakim committed Feb 28, 2014
1 parent abe9b9a commit a82e27e
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions src/core/stdc/stdio.d
Expand Up @@ -261,10 +261,11 @@ else version( OSX )
__sbuf _bf;
int _lbfsize;

int* function(void*) _close;
int* function(void*, char*, int) _read;
fpos_t* function(void*, fpos_t, int) _seek;
int* function(void*, char *, int) _write;
void* _cookie;
int function(void*) _close;
int function(void*, char*, int) _read;
fpos_t function(void*, fpos_t, int) _seek;
int function(void*, char *, int) _write;

__sbuf _ub;
__sFILEX* _extra;
Expand All @@ -286,7 +287,7 @@ else version( FreeBSD )
{
alias int fpos_t; //check this

struct __SFILE
struct __sFILE
{
ubyte* _p;
int _r;
Expand All @@ -297,10 +298,10 @@ else version( FreeBSD )
int _lbfsize;

void* _cookie;
int* function(void*) _close;
int* function(void*, char*, int) _read;
fpos_t* function(void*, fpos_t, int) _seek;
int* function(void*, in char*, int) _write;
int function(void*) _close;
int function(void*, char*, int) _read;
fpos_t function(void*, fpos_t, int) _seek;
int function(void*, in char*, int) _write;

__sbuf _ub;
ubyte* _up;
Expand Down Expand Up @@ -360,10 +361,10 @@ else version( Android )
int _lbfsize;

void* _cookie;
int* function(void*) _close;
int* function(void*, char*, int) _read;
fpos_t* function(void*, fpos_t, int) _seek;
int* function(void*, in char*, int) _write;
int function(void*) _close;
int function(void*, char*, int) _read;
fpos_t function(void*, fpos_t, int) _seek;
int function(void*, in char*, int) _write;

__sbuf _ext;
ubyte* _up;
Expand Down

0 comments on commit a82e27e

Please sign in to comment.