From 4e506c9aefe5b89970ae6894d05ad53c81af0d83 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 6 May 2005 02:43:04 +0000 Subject: use installed dietlibc, not our forked cvs version --- mdk-stage1/dietlibc/include/stdio.h | 147 ------------------------------------ 1 file changed, 147 deletions(-) delete mode 100644 mdk-stage1/dietlibc/include/stdio.h (limited to 'mdk-stage1/dietlibc/include/stdio.h') diff --git a/mdk-stage1/dietlibc/include/stdio.h b/mdk-stage1/dietlibc/include/stdio.h deleted file mode 100644 index 04783c3b8..000000000 --- a/mdk-stage1/dietlibc/include/stdio.h +++ /dev/null @@ -1,147 +0,0 @@ -#ifndef _STDIO_H -#define _STDIO_H - -#include -#include -#include - -typedef struct __stdio_file FILE; - -FILE *fopen (const char *path, const char *mode) __THROW; -FILE *fdopen (int fildes, const char *mode) __THROW; -FILE *freopen (const char *path, const char *mode, FILE *stream) __THROW; - -int printf(const char *format, ...) __THROW __attribute__((format(printf,1,2))); -int fprintf(FILE *stream, const char *format, ...) __THROW __attribute__((format(printf,2,3))); -int sprintf(char *str, const char *format, ...) __THROW __attribute__((format(printf,2,3))); -int snprintf(char *str, size_t size, const char *format, ...) __THROW __attribute__((format(printf,3,4))); -int asprintf(char **ptr, const char* format, ...) __THROW __attribute_malloc__ __attribute__((format(printf,2,3))); - -int scanf(const char *format, ...) __THROW __attribute__((format(scanf,1,2))); -int fscanf(FILE *stream, const char *format, ...) __THROW __attribute__((format(scanf,2,3))); -int sscanf(const char *str, const char *format, ...) __THROW __attribute__((format(scanf,2,3))); - -#include - -int vprintf(const char *format, va_list ap) __THROW __attribute__((format(printf,1,0))); -int vfprintf(FILE *stream, const char *format, va_list ap) __THROW __attribute__((format(printf,2,0))); -int vsprintf(char *str, const char *format, va_list ap) __THROW __attribute__((format(printf,2,0))); -int vsnprintf(char *str, size_t size, const char *format, va_list ap) __THROW __attribute__((format(printf,3,0))); - -int fdprintf(int fd, const char *format, ...) __THROW __attribute__((format(printf,2,3))); -int vfdprintf(int fd, const char *format, va_list ap) __THROW __attribute__((format(printf,2,0))); - -int vscanf(const char *format, va_list ap) __THROW __attribute__((format(scanf,1,0))); -int vsscanf(const char *str, const char *format, va_list ap) __THROW __attribute__((format(scanf,2,0))); -int vfscanf(FILE *stream, const char *format, va_list ap) __THROW __attribute__((format(scanf,2,0))); - -int fgetc(FILE *stream) __THROW; -int fgetc_unlocked(FILE *stream) __THROW; -char *fgets(char *s, int size, FILE *stream) __THROW; -int getc(FILE *stream) __THROW; -int getchar(void) __THROW; -char *gets(char *s) __THROW; -int ungetc(int c, FILE *stream) __THROW; - -int fputc(int c, FILE *stream) __THROW; -int fputc_unlocked(int c, FILE *stream) __THROW; -int fputs(const char *s, FILE *stream) __THROW; - -int putchar(int c) __THROW; - -#define putc(c,stream) fputc(c,stream) -#define putchar(c) fputc(c,stdout) - -#define getchar() fgetc(stdin) -#define getc(stream) fgetc(stream) -#define getc_unlocked(stream) fgetc_unlocked(stream) - -int puts(const char *s) __THROW; - -int fseek(FILE *stream, long offset, int whence) __THROW; -long ftell(FILE *stream) __THROW; -int fseeko(FILE *stream, off_t offset, int whence) __THROW; -off_t ftello(FILE *stream) __THROW; - -#ifndef __NO_STAT64 -int fseeko64(FILE *stream, loff_t offset, int whence) __THROW; -loff_t ftello64(FILE *stream) __THROW; - -#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS == 64 -#define off_t loff_t -#define fseeko(foo,bar,baz) fseeko64(foo,bar,baz) -#define ftello(foo) ftello64(foo) -#endif - -#endif - -void rewind(FILE *stream) __THROW; -int fgetpos(FILE *stream, fpos_t *pos) __THROW; -int fsetpos(FILE *stream, fpos_t *pos) __THROW; - -size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream) __THROW; - -size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream) __THROW; - -int fflush(FILE *stream) __THROW; - -int fclose(FILE *stream) __THROW; - -int feof (FILE *stream) __THROW; -int ferror(FILE *stream) __THROW; -int fileno(FILE *stream) __THROW; -void clearerr(FILE *stream) __THROW; - -int remove(const char *pathname) __THROW; - -void perror(const char *s) __THROW; - -extern FILE *stdin, *stdout, *stderr; - -#define EOF (-1) - -#define BUFSIZ 128 - -#define _IONBF 0 -#define _IOLBF 1 -#define _IOFBF 2 - -int setvbuf(FILE *stream, char *buf, int mode , size_t size) __THROW; - -#define setbuf(stream,buf) setvbuf(stream,buf,buf?_IOFBF:_IONBF,BUFSIZ) -#define setbuffer(stream,buf,size) setvbuf(stream,buf,buf?_IOFBF:_IONBF,size) -#define setlinebuf(stream) setvbuf(stream,0,_IOLBF,BUFSIZ) - -FILE *popen(const char *command, const char *type) __THROW; -int pclose(FILE *stream) __THROW; - -#ifndef SEEK_SET -#define SEEK_SET 0 -#define SEEK_CUR 1 -#define SEEK_END 2 -#endif - -#define L_tmpnam 128 -#define P_tmpdir "/tmp" -char* tmpnam(char *s) __THROW; /* DO NOT USE!!! Use mkstemp instead! */ -char* tempnam(char* dir,char* _template); /* dito */ -FILE* tmpfile(void) __THROW; - -#define FILENAME_MAX 4095 -#define FOPEN_MAX 16 - -#ifdef _POSIX_SOURCE -#define L_ctermid 9 -#define L_cuserid 9 -#endif - -void flockfile(FILE* f) __THROW; -void funlockfile(FILE* f) __THROW; - -#ifdef _GNU_SOURCE -ssize_t getline(char **lineptr, size_t *n, FILE *stream); -ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream); -#define getline(lineptr,n,stream) getdelim(lineptr,n,'\n',stream) -#endif - -#endif -- cgit v1.2.1