From 9d14f7259397aba892b64e8c2b09f00be23aee1d Mon Sep 17 00:00:00 2001 From: Peter Bigot Date: Mon, 21 Dec 2020 08:10:50 -0600 Subject: [PATCH] lib: libc: minimal: remove outdated comment The referenced functions may not have been implemented back in 2015, but they are now. Signed-off-by: Peter Bigot --- lib/libc/minimal/include/stdio.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/libc/minimal/include/stdio.h b/lib/libc/minimal/include/stdio.h index f2d86aaf92b..15f70fffcca 100644 --- a/lib/libc/minimal/include/stdio.h +++ b/lib/libc/minimal/include/stdio.h @@ -31,11 +31,6 @@ typedef int FILE; #define stdout ((FILE *) 2) #define stderr ((FILE *) 3) -/* - * NOTE: This libc implementation does not define the routines - * declared below. - */ - int __printf_like(1, 2) printf(const char *_MLIBC_RESTRICT fmt, ...); int __printf_like(3, 4) snprintf(char *_MLIBC_RESTRICT s, size_t len, const char *_MLIBC_RESTRICT fmt, ...);