2020-11-18 09:41:58 +00:00
|
|
|
/*
|
|
|
|
* <stdio.h> - input/output
|
|
|
|
* This header is a part of the FENIX C Library and is free software.
|
|
|
|
* You can redistribute and/or modify it subject to the terms of the
|
|
|
|
* Clumsy Wolf Public License v4. For more details, see the file COPYING.
|
|
|
|
*
|
|
|
|
* The FENIX C Library is distributed WITH NO WARRANTY WHATSOEVER. See
|
|
|
|
* The CWPL for more details.
|
|
|
|
*/
|
|
|
|
|
2020-02-12 05:23:27 +00:00
|
|
|
#ifndef _STDIO_H
|
|
|
|
#define _STDIO_H
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
2020-11-18 09:41:58 +00:00
|
|
|
#define __need_size_t
|
|
|
|
#define __need_ssize_t
|
|
|
|
#define __need_off_t
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2020-02-12 05:23:27 +00:00
|
|
|
#define EOF (-1)
|
|
|
|
|
|
|
|
int printf(const char * __restrict, ...);
|
|
|
|
|
|
|
|
int putchar(int);
|
|
|
|
|
|
|
|
int puts(const char *);
|
|
|
|
|
2020-11-18 09:41:58 +00:00
|
|
|
void perror(const char *);
|
|
|
|
|
2020-02-12 05:23:27 +00:00
|
|
|
#endif
|