//
// Created by isaac on 2/18/2024.
//
/* Values for the second argument to access.
   These may be OR'd together.  */
//#define   X_OK    1       /* execute permission - unsupported in windows*/
/* read, write, and close are NOT being #defined here, because while there are file handle specific versions for Windows, they probably don't work for sockets. You need to look at your app and consider whether to call e.g. closesocket(). */
/* should be in some equivalent to <sys/types.h> */
// typedef __int8            int8_t;
// typedef __int16           int16_t;
// typedef __int32           int32_t;
// typedef __int64           int64_t;
// typedef unsigned __int8   uint8_t;
// typedef unsigned __int16  uint16_t;
// typedef unsigned __int32  uint32_t;
// typedef unsigned __int64  uint64_t;
 //UNISTD_H
 //WIN32