home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / stdio.h < prev    next >
C/C++ Source or Header  |  2004-01-30  |  306b  |  15 lines

  1. #ifndef _NEWLIB_STDIO_H
  2. #define _NEWLIB_STDIO_H
  3.  
  4. /* Internal locking macros, used to protect stdio functions.  In the
  5.    general case, expand to nothing. */
  6. #if !defined(_flockfile)
  7. #  define _flockfile(fp)
  8. #endif
  9.  
  10. #if !defined(_funlockfile)
  11. #  define _funlockfile(fp)
  12. #endif
  13.  
  14. #endif /* _NEWLIB_STDIO_H */
  15.