mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 17:05:54 +00:00
Move tracing.h to include/tracing/ to align with subsystem reorg. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
13 lines
286 B
C
13 lines
286 B
C
/*
|
|
* Copyright (c) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_DEBUG_TRACING_H
|
|
#define ZEPHYR_INCLUDE_DEBUG_TRACING_H
|
|
#warning "This header file has moved, include <tracing/tracing.h> instead."
|
|
|
|
#include <tracing/tracing.h>
|
|
#endif
|