summaryrefslogtreecommitdiff
path: root/include/System/System.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/System/System.h')
-rw-r--r--include/System/System.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/System/System.h b/include/System/System.h
new file mode 100644
index 0000000..aa3da84
--- /dev/null
+++ b/include/System/System.h
@@ -0,0 +1,18 @@
+//===--- System.h - The system library -------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_LIBFLANG_CORE_H
+#define LLVM_LIBFLANG_CORE_H
+
+#include "Libflang.h"
+
+LIBFLANG_ABI void libflang_sys_init();
+LIBFLANG_ABI float libflang_etime(float *time0, float *time1);
+
+#endif