2013-05-28 20:37:34 +08:00
|
|
|
//===-- sanitizer_nolibc_test_main.cc -------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is a part of ThreadSanitizer/AddressSanitizer runtime.
|
|
|
|
// Tests for libc independence of sanitizer_common.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "sanitizer_common/sanitizer_libc.h"
|
|
|
|
|
|
|
|
extern "C" void _start() {
|
2016-09-16 05:02:18 +08:00
|
|
|
__sanitizer::internal__exit(0);
|
2013-05-28 20:37:34 +08:00
|
|
|
}
|