summaryrefslogtreecommitdiff
path: root/tests/test_strerror.c
blob: 57b051f1b8450fda4826575129e1cfb1c2a85379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifdef NDEBUG
#undef NDEBUG
#endif
#include "strerror_override.h"
#include "strerror_override_private.h"

#include <stdio.h>

int main(int argc, char **argv)
{
	puts(strerror(10000));
	puts(strerror(999));
	return 0;
}