summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/strtoq.c
diff options
context:
space:
mode:
authorRobert Drehmel <robert@FreeBSD.org>2002-08-15 09:25:04 +0000
committerRobert Drehmel <robert@FreeBSD.org>2002-08-15 09:25:04 +0000
commit5618f72405ba7a6b9d960d494f9db670ba994b3f (patch)
treeb37b20746e471ae334376a361c54543969e8e35f /lib/libc/stdlib/strtoq.c
parent0d533e437d5ab3149e9380d9b0b7819221869d9f (diff)
Notes
Diffstat (limited to 'lib/libc/stdlib/strtoq.c')
-rw-r--r--lib/libc/stdlib/strtoq.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtoq.c b/lib/libc/stdlib/strtoq.c
index 78c1b08f8d31..a3e37afab85f 100644
--- a/lib/libc/stdlib/strtoq.c
+++ b/lib/libc/stdlib/strtoq.c
@@ -45,10 +45,7 @@ __FBSDID("$FreeBSD$");
* Convert a string to a quad integer.
*/
quad_t
-strtoq(nptr, endptr, base)
- const char *nptr;
- char **endptr;
- int base;
+strtoq(const char *nptr, char **endptr, int base)
{
return strtoll(nptr, endptr, base);