/* Copyright (c) 2014, Linaro Limited * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include ODP_WEAK_SYMBOL int odp_override_log(odp_log_level_e level ODP_UNUSED, const char *fmt, ...) { va_list args; int r; va_start(args, fmt); r = vfprintf(stderr, fmt, args); va_end(args); return r; }