cheliequan
2023-01-13 379ec7cb8b5b36aade5ce2714b4a990bf34f8eb6
1
2
3
4
5
6
7
8
9
10
11
#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;
}