From eaff9ccf1dfe8f9524a1f72d8c3ec9c57a6b8228 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sun, 24 Oct 2021 02:49:21 +0200 Subject: Provide implementation for perror(3) --- libpsx/include/stdio.h | 1 + 1 file changed, 1 insertion(+) (limited to 'libpsx/include') diff --git a/libpsx/include/stdio.h b/libpsx/include/stdio.h index 0e093d9..c63e585 100644 --- a/libpsx/include/stdio.h +++ b/libpsx/include/stdio.h @@ -123,6 +123,7 @@ void clearerr(FILE *stream); int feof(FILE *stream); int ferror(FILE *stream); int fileno(FILE *stream); +void perror(const char *s); #define getc(f) fgetc(f) -- cgit v1.2.3