summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorarphaman <arphaman@gmail.com>2013-07-12 16:37:13 +0100
committerarphaman <arphaman@gmail.com>2013-07-12 16:37:13 +0100
commit2dac284ac70786befe1907dfde11dbd95c3d6805 (patch)
tree2ed82278cd8c667e2da810d8681f022f464c1ee4 /lib
parentf2eba4267c595d6f74e576c9f2319eda38346658 (diff)
downloadlibflangrt-2dac284ac70786befe1907dfde11dbd95c3d6805.tar.gz
added stop stmt
Diffstat (limited to 'lib')
-rw-r--r--lib/Core/Core.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Core/Core.cpp b/lib/Core/Core.cpp
index e69de29..73d5c08 100644
--- a/lib/Core/Core.cpp
+++ b/lib/Core/Core.cpp
@@ -0,0 +1,6 @@
+#include <cstdlib>
+#include "Core/Core.h"
+
+LIBFLANG_ABI void libflang_stop() {
+ exit(0);
+}