diff options
author | andrew <andrew@FreeBSD.org> | 2013-01-18 20:06:45 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-01-18 20:06:45 +0000 |
commit | 254a83b703ce3576b1aea35fdd5308aaf1d05f4b (patch) | |
tree | b946f82269be87d83f086167c762c362e734c5bb /SDKs/darwin/usr/include/stdio.h | |
parent | cfeab007a554034f0b3ab4a677cf9dd2696c12f9 (diff) | |
download | FreeBSD-src-254a83b703ce3576b1aea35fdd5308aaf1d05f4b.zip FreeBSD-src-254a83b703ce3576b1aea35fdd5308aaf1d05f4b.tar.gz |
Import compiler-rt r172839.
Diffstat (limited to 'SDKs/darwin/usr/include/stdio.h')
-rw-r--r-- | SDKs/darwin/usr/include/stdio.h | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/SDKs/darwin/usr/include/stdio.h b/SDKs/darwin/usr/include/stdio.h index 3b56036..63b10a8 100644 --- a/SDKs/darwin/usr/include/stdio.h +++ b/SDKs/darwin/usr/include/stdio.h @@ -17,6 +17,10 @@ #ifndef __STDIO_H__ #define __STDIO_H__ +#if defined(__cplusplus) +extern "C" { +#endif + typedef struct __sFILE FILE; typedef __SIZE_TYPE__ size_t; @@ -51,11 +55,30 @@ typedef __SIZE_TYPE__ size_t; # define stderr __stderrp extern FILE *__stderrp; +#ifndef SEEK_SET +#define SEEK_SET 0 /* set file offset to offset */ +#endif +#ifndef SEEK_CUR +#define SEEK_CUR 1 /* set file offset to current plus offset */ +#endif +#ifndef SEEK_END +#define SEEK_END 2 /* set file offset to EOF plus offset */ +#endif + int fclose(FILE *); int fflush(FILE *); -FILE *fopen(const char * restrict, const char * restrict) __asm(__FOPEN_NAME); -int fprintf(FILE * restrict, const char * restrict, ...); -size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict) +FILE *fopen(const char * __restrict, const char * __restrict) __asm(__FOPEN_NAME); +int fprintf(FILE * __restrict, const char * __restrict, ...); +size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict) __asm(__FWRITE_NAME); +size_t fread(void * __restrict, size_t, size_t, FILE * __restrict); +long ftell(FILE *); +int fseek(FILE *, long, int); + +int snprintf(char * __restrict, size_t, const char * __restrict, ...); + +#if defined(__cplusplus) +} +#endif #endif /* __STDIO_H__ */ |