[libc-commits] [libc] [llvm] [libc] Add functions to send/recv messages (PR #106467)

via libc-commits libc-commits at lists.llvm.org
Thu Sep 19 08:53:19 PDT 2024


================
@@ -0,0 +1,19 @@
+//===-- Definition of struct iovec ----------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef __LLVM_LIBC_TYPES_STRUCT_IOVEC_H__
+#define __LLVM_LIBC_TYPES_STRUCT_IOVEC_H__
+
+#include "llvm-libc-types/size_t.h"
----------------
lntue wrote:

it should be relative to this file's path, so just:
```
#include "size_t.h"
```

https://github.com/llvm/llvm-project/pull/106467


More information about the libc-commits mailing list