1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-14 17:13:50 +01:00
RIOT/tests/sys/trace/main.c
Marian Buschsieweke f8029e8891
tests/sys: use SPDX copyright tags
Co-authored-by: crasbe <crasbe@gmail.com>
2025-11-22 08:48:27 +01:00

31 lines
454 B
C

/*
* SPDX-FileCopyrightText: 2020 Kaspar Schleiser <kaspar@schleiser.de>
* SPDX-License-Identifier: LGPL-2.1-only
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief trace module test application
*
* This test application tests basic functionality of `sys/trace`.
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/
#include "trace.h"
int main(void)
{
trace(0);
trace(1);
trace_dump();
return 0;
}