As it turns out Xtensa SDK headers also define _Restrict, causing havoc. As this was intended to be a private macro, rename it to something less likely to cause a collision. Change-Id: I0a7501a1af8cf87efb096872a91a7b44bd2bbdca Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
/* stdio.h */
|
|
|
|
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_stdio_h__
|
|
#define __INC_stdio_h__
|
|
|
|
#include <stdarg.h> /* Needed to get definition of va_list */
|
|
#include <bits/restrict.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if !defined(__FILE_defined)
|
|
#define __FILE_defined
|
|
typedef int FILE;
|
|
#endif
|
|
|
|
#if !defined(EOF)
|
|
#define EOF (-1)
|
|
#endif
|
|
|
|
#define stdin ((FILE *) 1)
|
|
#define stdout ((FILE *) 2)
|
|
#define stderr ((FILE *) 3)
|
|
|
|
/*
|
|
* NOTE: This libc implementation does not define the routines
|
|
* declared below.
|
|
*/
|
|
|
|
int printf(const char *_MLIBC_RESTRICT fmt, ...);
|
|
int snprintf(char *_MLIBC_RESTRICT s, size_t len,
|
|
const char *_MLIBC_RESTRICT fmt, ...);
|
|
int sprintf(char *_MLIBC_RESTRICT s, const char *_MLIBC_RESTRICT fmt, ...);
|
|
int fprintf(FILE *_MLIBC_RESTRICT stream,
|
|
const char *_MLIBC_RESTRICT format, ...);
|
|
|
|
|
|
int vprintf(const char *_MLIBC_RESTRICT fmt, va_list list);
|
|
int vsnprintf(char *_MLIBC_RESTRICT s, size_t len,
|
|
const char *_MLIBC_RESTRICT fmt, va_list list);
|
|
int vsprintf(char *_MLIBC_RESTRICT s,
|
|
const char *_MLIBC_RESTRICT fmt, va_list list);
|
|
int vfprintf(FILE *_MLIBC_RESTRICT stream, const char *_MLIBC_RESTRICT format,
|
|
va_list ap);
|
|
|
|
int puts(const char *s);
|
|
|
|
int fputc(int c, FILE *stream);
|
|
int fputs(const char *_MLIBC_RESTRICT s, FILE *_MLIBC_RESTRICT stream);
|
|
size_t fwrite(const void *_MLIBC_RESTRICT ptr, size_t size, size_t nitems,
|
|
FILE *_MLIBC_RESTRICT stream);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __INC_stdio_h__ */
|