summaryrefslogtreecommitdiff
path: root/utils/libcxx/sym_check/__init__.py
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-04-16 16:03:23 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-04-16 16:03:23 +0000
commit0dc0969cd0a732760f0aa79942a04e0eaef297c4 (patch)
tree051bdb57b1ac6ee143f61ddbb47bd0da619f6f0c /utils/libcxx/sym_check/__init__.py
parent868847c6900e575417c03bced6e562b3af891318 (diff)
Notes
Diffstat (limited to 'utils/libcxx/sym_check/__init__.py')
-rw-r--r--utils/libcxx/sym_check/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/utils/libcxx/sym_check/__init__.py b/utils/libcxx/sym_check/__init__.py
new file mode 100644
index 0000000000000..1aa2b450c12fb
--- /dev/null
+++ b/utils/libcxx/sym_check/__init__.py
@@ -0,0 +1,17 @@
+#===----------------------------------------------------------------------===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is dual licensed under the MIT and the University of Illinois Open
+# Source Licenses. See LICENSE.TXT for details.
+#
+#===----------------------------------------------------------------------===##
+
+"""libcxx abi symbol checker"""
+
+__author__ = 'Eric Fiselier'
+__email__ = 'eric@efcs.ca'
+__versioninfo__ = (0, 1, 0)
+__version__ = ' '.join(str(v) for v in __versioninfo__) + 'dev'
+
+__all__ = ['diff', 'extract', 'util']