about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/abort.c
blob: 741bcf82d4c5886b8ec011b45c85d50b861a296f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
}