home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / sybase / starbuck / h.z / UNISTD.H < prev    next >
C/C++ Source or Header  |  1996-07-24  |  589b  |  35 lines

  1. /*
  2.  *  unistd.h
  3.  *
  4.  *  Copyright by WATCOM International Corp. 1988-1996.  All rights reserved.
  5.  */
  6. #ifndef _UNISTD_H_INCLUDED
  7. #define _UNISTD_H_INCLUDED
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. #ifndef _COMDEF_H_INCLUDED
  13.  #include <_comdef.h>
  14. #endif
  15. #ifndef _IO_H_INCLUDED
  16.  #include <io.h>
  17. #endif
  18.  
  19. #ifndef _WCHAR_T_DEFINED
  20. #define _WCHAR_T_DEFINED
  21. #define _WCHAR_T_DEFINED_
  22. #ifdef __cplusplus
  23. typedef long char wchar_t;
  24. #else
  25. typedef unsigned short wchar_t;
  26. #endif
  27. #endif
  28.  
  29. _WCRTLINK extern int    fsync( int __filedes );
  30.  
  31. #ifdef __cplusplus
  32. };
  33. #endif
  34. #endif
  35.