[libc-commits] [libc] [libc] Add `ctime_s` (PR #110676)
Nick Desaulniers via libc-commits
libc-commits at lists.llvm.org
Wed Jan 8 11:05:19 PST 2025
================
@@ -0,0 +1,16 @@
+//===-- Definition of errno_t type ----------------------------------------===//
+//
+// 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_ERRNO_T_H
+#define LLVM_LIBC_TYPES_ERRNO_T_H
+
+#include "size_t.h"
----------------
nickdesaulniers wrote:
You don't use `size_t` in this header, so this include should be removed.
https://github.com/llvm/llvm-project/pull/110676
More information about the libc-commits
mailing list