[libc-commits] [PATCH] D90653: [LIBC][NFC] Rename errno and assert files to match other files with functions

Siva Chandra via Phabricator via libc-commits libc-commits at lists.llvm.org
Tue Nov 3 11:05:01 PST 2020


sivachandra accepted this revision.
sivachandra added inline comments.
This revision is now accepted and ready to land.


================
Comment at: libc/src/assert/assert.h:8
 //===----------------------------------------------------------------------===//
 
+#include "src/assert/__assert_fail.h"
----------------
Missing header guard.


================
Comment at: libc/src/errno/llvmlibc_errno.h:8
 //===----------------------------------------------------------------------===//
 
+#include "src/errno/__errno_location.h"
----------------
Missing header guard.


================
Comment at: libc/src/errno/llvmlibc_errno.h:14
+#define llvmlibc_errno (*__llvm_libc::__errno_location())
\ No newline at end of file

----------------
Please fix.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D90653/new/

https://reviews.llvm.org/D90653



More information about the libc-commits mailing list