blob: d6f9883ecae0e9ec422307c9fe8541461c395729 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#if __STDC_VERSION__ >= 199901L
#include <inttypes.h>
#else
#include "stdint/intmax_t.h"
#include "stdint/uintmax_t.h"
#include "stdint/intptr_t.h"
#include "stdint/UINTMAX_MAX.h"
#define strtoumax __strtoumax
#include "inttypes/strtoumax.c"
#endif
|