X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=include%2Finttypes.h;h=3f0339ce340e3382d69d5a7f32117d6808e89fa1;hp=13ba6e0f7f24ac7e36a01654e5c4bf39f489057c;hb=a8da6c2f287037cbacc65578a268f355760eaf8e;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 diff --git a/include/inttypes.h b/include/inttypes.h index 13ba6e0f..3f0339ce 100644 --- a/include/inttypes.h +++ b/include/inttypes.h @@ -5,6 +5,7 @@ extern "C" { #endif +#include #include #define __NEED_wchar_t @@ -15,11 +16,11 @@ typedef struct { intmax_t quot, rem; } imaxdiv_t; intmax_t imaxabs(intmax_t); imaxdiv_t imaxdiv(intmax_t, intmax_t); -intmax_t strtoimax(const char *, char **, int); -uintmax_t strtoumax(const char *, char **, int); +intmax_t strtoimax(const char *__restrict, char **__restrict, int); +uintmax_t strtoumax(const char *__restrict, char **__restrict, int); -intmax_t wcstoimax(const wchar_t *, wchar_t **, int); -uintmax_t wcstoumax(const wchar_t *, wchar_t **, int); +intmax_t wcstoimax(const wchar_t *__restrict, wchar_t **__restrict, int); +uintmax_t wcstoumax(const wchar_t *__restrict, wchar_t **__restrict, int); #if !defined __cplusplus || defined __STDC_FORMAT_MACROS