1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/avr8_common: fix typo in a comment

This commit is contained in:
Marian Buschsieweke 2023-06-28 22:36:21 +02:00
parent d339984c66
commit a6f48d84a0
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -41,7 +41,7 @@ extern "C" {
#define flash_strcpy strcpy_P
#define flash_strncpy strncpy_P
#define flash_printf printf_P
/* avrlibc seemingly forgot to provide fprintf(), but vfprintf() is there */
/* avrlibc seemingly forgot to provide vprintf_P(), but vfprintf_P() is there */
#define flash_vprintf(fmt, arglist) vfprintf_P(stdout, fmt, arglist)
#define flash_fprintf fprintf_P
#define flash_vfprintf vfprintf_P