#ifndef IOPROTOS_H #define IOPROTOS_H #include #include #include #include /* Prototype declarations that may be missing in stdio.h, time.h: */ int printf(const char *, ...); int scanf(const char *, ...); int fputc(int, FILE*); int fgetc(FILE *); int fputs(const char *, FILE*); int fprintf(FILE *, const char *, ...); int fscanf(FILE *, const char *, ...); int fclose(FILE *); int fflush(FILE *); int _filbuf(FILE *); long _sysconf(int); #if (! defined(OSF1V4)) int _flsbuf(unsigned int, FILE*); #endif time_t time (time_t *); struct tm *localtime(const time_t *); #endif