Ilya_konstantinov

Untitled

Mar 23rd, 2026
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <sys/types.h>
  4.  
  5. int Pipe2(int* pipes, int flags);
  6. int Open(const char* filename, int flags, mode_t mode);
  7. int Close(int fd);
  8.  
  9. ssize_t Write(int fd, const char* buf, size_t count);
  10. ssize_t Read(int fd, char* buf, size_t count);
  11.  
  12. void* MMap(void* mem, size_t len, int prot, int flags, int fd, off_t offset);
  13. int MUnMap(void* mem, size_t len);
  14.  
Advertisement
Add Comment
Please, Sign In to add comment