libbcc

Change-Id: Ieaa3ebd5a38f370752495549f8870b534eeedfc5
diff --git a/bcc_runtime.h b/bcc_runtime.h
new file mode 100644
index 0000000..8ab9b79
--- /dev/null
+++ b/bcc_runtime.h
@@ -0,0 +1,15 @@
+#ifndef _BCC_RUNTIME_H_
+#   define _BCC_RUNTIME_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+    void ListRuntimeFunction();
+void* FindRuntimeFunction(const char* Name);
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif  /* _BCC_RUNTIME_H_ */