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

25 lines
365 B
C

/*
* SPDX-FileCopyrightText: 2019 Freie Universität Berlin
* SPDX-License-Identifier: LGPL-2.1-only
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief Tests VFS together with stdio on a board
*
* @author Martine S. Lenders <m.lenders@fu-berlin.de>
*
* @}
*/
#include "fmt.h"
int main(void)
{
print_str("SUCCESS\n");
return 0;
}