diff options
author | Mattias Andrée <maandree@kth.se> | 2023-12-05 00:03:04 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-12-05 00:03:04 +0100 |
commit | 58dd684c4e86944301959a140dbed9746df35779 (patch) | |
tree | a2702ea4f66b2a58711ee22eb7449c74b1ecf0d1 /testutil/get-error.c | |
parent | First commit (diff) | |
download | libsyscalls-58dd684c4e86944301959a140dbed9746df35779.tar.gz libsyscalls-58dd684c4e86944301959a140dbed9746df35779.tar.bz2 libsyscalls-58dd684c4e86944301959a140dbed9746df35779.tar.xz |
Second commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'testutil/get-error.c')
-rw-r--r-- | testutil/get-error.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testutil/get-error.c b/testutil/get-error.c new file mode 100644 index 0000000..8f066d7 --- /dev/null +++ b/testutil/get-error.c @@ -0,0 +1,27 @@ +/* See LICENSE file for copyright and license details. */ +#include "../libsyscalls.h" + +#include <stddef.h> +#include <stdio.h> +#include <string.h> + + +int +main(int argc, char *argv[]) +{ + int i; + + for (i = 1; i < argc; i++) { +#define X(N, S)\ + if (!strcmp(argv[i], #N))\ + printf("%s\n", S) + LIBSYSCALLS_LIST_ERRORS(X, ;); +#undef X + } + + if (fflush(stdout) || fclose(stdout)) { + perror(NULL); + return 1; + } + return 0; +} |