about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/abort.c
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/klee-libc/abort.c')
-rw-r--r--runtime/klee-libc/abort.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/klee-libc/abort.c b/runtime/klee-libc/abort.c
new file mode 100644
index 00000000..0332d095
--- /dev/null
+++ b/runtime/klee-libc/abort.c
@@ -0,0 +1,16 @@
+//===-- abort.c -----------------------------------------------------------===//
+//
+//                     The KLEE Symbolic Virtual Machine
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#include <stdlib.h>
+
+#include "klee/klee.h"
+
+void abort(void) {
+  klee_abort();
+}