mirror of
https://github.com/json-c/json-c.git
synced 2026-03-23 06:59:06 +08:00
12 lines
184 B
C
12 lines
184 B
C
|
|
#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;
|
||
|
|
}
|