[libc][obvious] Add license headers to APIIndexer.[cpp|h].
authorSiva Chandra Reddy <sivachandra@google.com>
Wed, 29 Jul 2020 00:03:16 +0000 (17:03 -0700)
committerSiva Chandra Reddy <sivachandra@google.com>
Wed, 29 Jul 2020 00:04:03 +0000 (17:04 -0700)
libc/utils/LibcTableGenUtil/APIIndexer.cpp
libc/utils/LibcTableGenUtil/APIIndexer.h

index 934d713..366dea9 100644 (file)
@@ -1,3 +1,10 @@
+//===-- Implementation of APIIndexer clas ---------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
 
 #include "APIIndexer.h"
 
index a0f0acf..8fa8711 100644 (file)
@@ -1,3 +1,13 @@
+//===-- A class to index libc API listed in tablegen files ------*- C++ -*-===//
+//
+// 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_UTILS_LIBC_TABLE_GEN_UTILS_API_INDEXER_H
+#define LLVM_LIBC_UTILS_LIBC_TABLE_GEN_UTILS_API_INDEXER_H
 
 #include "llvm/ADT/StringRef.h"
 #include "llvm/TableGen/Record.h"
@@ -64,3 +74,5 @@ public:
 };
 
 } // namespace llvm_libc
+
+#endif // LLVM_LIBC_UTILS_LIBC_TABLE_GEN_UTILS_API_INDEXER_H