about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/abort.c
blob: 0332d09549ce90ac60416f8dab52a54b3ec30a7f (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();
}