uio.h 214 B

12345678910111213141516171819
  1. #ifndef __GBLIBC_SYS_UIO_H
  2. #define __GBLIBC_SYS_UIO_H
  3. #include <sys/types.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. struct iovec {
  8. void* iov_base;
  9. size_t iov_len;
  10. };
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif