Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  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.  
  18. void     _EXFUN(__fpurge,(FILE *));
  19.  
  20. _END_STD_C
  21.  
  22. #endif /* _STDIO_EXT_H_ */
  23.