diff options
Diffstat (limited to 'lib/libc/stdio/perror.c')
| -rw-r--r-- | lib/libc/stdio/perror.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdio/perror.c b/lib/libc/stdio/perror.c index f3f4bb19..63c708a9 100644 --- a/lib/libc/stdio/perror.c +++ b/lib/libc/stdio/perror.c @@ -1,8 +1,8 @@ -#include <stdio.h> -#include <string.h> -#include <errno.h> -#include <unistd.h> -#include <sys/uio.h> +#include <errno.h> // for errno +#include <stdio.h> // for NULL, perror +#include <string.h> // for strlen, strerror +#include <sys/uio.h> // for iovec, writev +#include <unistd.h> // for STDERR_FILENO void perror(const char *s) { |
