uio.h 299 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <Kernel/API/POSIX/sys/types.h>
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. struct iovec {
  12. void* iov_base;
  13. size_t iov_len;
  14. };
  15. #ifdef __cplusplus
  16. }
  17. #endif