diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
commit | 58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3 (patch) | |
tree | ee19d604b38f08d225b97c81a641deba71f33d6b /include/inttypes.h | |
parent | 00f9b682956d9eda39f36dd9291d4313fc75025a (diff) |
Style: One space between "restrict" qualifier and "*".
Notes
Notes:
svn path=/head/; revision=103012
Diffstat (limited to 'include/inttypes.h')
-rw-r--r-- | include/inttypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/inttypes.h b/include/inttypes.h index 3fe6fcca257c..99841b8f957d 100644 --- a/include/inttypes.h +++ b/include/inttypes.h @@ -48,8 +48,8 @@ __BEGIN_DECLS intmax_t imaxabs(intmax_t) __pure2; imaxdiv_t imaxdiv(intmax_t, intmax_t) __pure2; -intmax_t strtoimax(const char *__restrict, char **__restrict, int); -uintmax_t strtoumax(const char *__restrict, char **__restrict, int); +intmax_t strtoimax(const char * __restrict, char ** __restrict, int); +uintmax_t strtoumax(const char * __restrict, char ** __restrict, int); /* XXX: The following functions are missing the restrict type qualifier. */ intmax_t wcstoimax(const wchar_t *, wchar_t **, int); uintmax_t wcstoumax(const wchar_t *, wchar_t **, int); |