diff options
Diffstat (limited to 'include/stdio.h')
-rw-r--r-- | include/stdio.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h index e65f49c0b..e807262f0 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -3,6 +3,7 @@ #define __STDIO_H #include <features.h> +#include <stdarg.h> #include <sys/types.h> #ifndef SEEK_SET @@ -197,5 +198,9 @@ extern int vfscanf __P ((FILE *__restrict __s, __attribute__ ((__format__ (__scanf__, 2, 0))); +/* Print a message describing the meaning of the value of errno. */ +extern void perror __P ((__const char *__s)); + + #endif /* __STDIO_H */ |