summaryrefslogtreecommitdiffstats
path: root/testutil/get-error.c
blob: 8f066d75bdbbe1f6a2d0218406e40163e09fdf0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}