mirror of
https://github.com/json-c/json-c.git
synced 2026-03-20 21:49:07 +08:00
15 lines
219 B
C
15 lines
219 B
C
#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;
|
|
}
|