diff options
author | Mattias Andrée <maandree@kth.se> | 2023-12-03 19:23:35 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-12-03 19:23:35 +0100 |
commit | c131f122778c62f920a99bbf854ced4a37ee8b03 (patch) | |
tree | 14c933f98f4d64dffb0a594bc40dd5121c6c5a8e /libsyscalls_perror.c | |
download | libsyscalls-c131f122778c62f920a99bbf854ced4a37ee8b03.tar.gz libsyscalls-c131f122778c62f920a99bbf854ced4a37ee8b03.tar.bz2 libsyscalls-c131f122778c62f920a99bbf854ced4a37ee8b03.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | libsyscalls_perror.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libsyscalls_perror.c b/libsyscalls_perror.c new file mode 100644 index 0000000..4b110c7 --- /dev/null +++ b/libsyscalls_perror.c @@ -0,0 +1,15 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +#include <stdio.h> + + +void +libsyscalls_perror(const char *prefix, enum libsyscalls_error error) +{ + const char *str = libsyscalls_strerror(error); + if (prefix && *prefix) + fprintf(stderr, "%s: %s\n", prefix, str); + else + fprintf(stderr, "%s\n", str); +} |