• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/
1/*
2 * stdio_ext.h
3 *
4 * Definitions for I/O internal operations, originally from Solaris.
5 */
6
7#ifndef _STDIO_EXT_H_
8#define _STDIO_EXT_H_
9
10#ifdef __rtems__
11#error "<stdio_ext.h> not supported"
12#endif
13
14#include <stdio.h>
15
16_BEGIN_STD_C
17
18void	 _EXFUN(__fpurge,(FILE *));
19
20_END_STD_C
21
22#endif /* _STDIO_EXT_H_ */
23