diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 22:19:14 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 22:19:14 -0500 |
| commit | 2c7f07a77c02a1bf7293bc4cc80254b972f747f8 (patch) | |
| tree | a51e1ca9526b59ab2bf01518f7b6f988b63d3cee /src/inttypes/strtoumax.c | |
| parent | 1ded342f76187ed2dc5bc0c3523db430be9f8db7 (diff) | |
update to 1:1 checked calls
Diffstat (limited to 'src/inttypes/strtoumax.c')
| -rw-r--r-- | src/inttypes/strtoumax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inttypes/strtoumax.c b/src/inttypes/strtoumax.c index 28fce88b..2889f109 100644 --- a/src/inttypes/strtoumax.c +++ b/src/inttypes/strtoumax.c @@ -4,8 +4,6 @@ #include <inttypes.h> #include "_safety.h" -#undef strtoumax - uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base) { SIGNAL_SAFE(0); @@ -19,6 +17,8 @@ uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base return ret; } +__check_3(uintmax_t, 0, strtoumax, const char *restrict, char ** restrict, int) + /* STDC(199901) */ |
