1 //===-- utilities_fuchsia.cpp -----------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "gwp_asan/utilities.h"
12 #include <zircon/sanitizer.h>
15 void die(const char *Message
) {
16 __sanitizer_log_write(Message
, strlen(Message
));
19 } // namespace gwp_asan