mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 17:43:51 +01:00
25 lines
365 B
C
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;
|
|
}
|