aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/strtoull.c
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-09-06 11:24:06 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-09-06 11:24:06 +0000
commit58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3 (patch)
treeee19d604b38f08d225b97c81a641deba71f33d6b /lib/libc/stdlib/strtoull.c
parent00f9b682956d9eda39f36dd9291d4313fc75025a (diff)
downloadsrc-58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3.tar.gz
src-58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3.zip
Style: One space between "restrict" qualifier and "*".
Notes
Notes: svn path=/head/; revision=103012
Diffstat (limited to 'lib/libc/stdlib/strtoull.c')
-rw-r--r--lib/libc/stdlib/strtoull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/strtoull.c b/lib/libc/stdlib/strtoull.c
index 08bf118ad819..1720a8f6571c 100644
--- a/lib/libc/stdlib/strtoull.c
+++ b/lib/libc/stdlib/strtoull.c
@@ -49,7 +49,7 @@ __FBSDID("$FreeBSD$");
* alphabets and digits are each contiguous.
*/
unsigned long long
-strtoull(const char *__restrict nptr, char **__restrict endptr, int base)
+strtoull(const char * __restrict nptr, char ** __restrict endptr, int base)
{
const char *s;
unsigned long long acc;