1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-14 17:13:50 +01:00
2025-07-16 14:49:35 +02:00

23 lines
368 B
C

/*
* SPDX-FileCopyrightText: 2025 ML!PA Consulting GmbH
* SPDX-License-Identifier: LGPL-2.1-only
*/
/**
* @file
* @brief Test logging with and without log unit.
*
* @author Mihai Renea <mihai.renea@ml-pa.com>
*/
void log_with_unit(void);
void log_without_unit(void);
int main(void)
{
log_with_unit();
log_without_unit();
return 0;
}