summaryrefslogtreecommitdiff
path: root/libc/stdlib/l64a.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-20 08:47:51 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-20 08:47:51 +0000
commit11975abb2c891e563dbed51a52c050ea0b05b8a4 (patch)
treed99ca21591a2528ac4546b64c8f703b0fc6dac34 /libc/stdlib/l64a.c
parent6a9087f96b69f1b8cea5cee76a27784d2b131cd2 (diff)
- remove old-style definitions. No object-code changes.
Diffstat (limited to 'libc/stdlib/l64a.c')
-rw-r--r--libc/stdlib/l64a.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/stdlib/l64a.c b/libc/stdlib/l64a.c
index f3a249fed..a8b2d551e 100644
--- a/libc/stdlib/l64a.c
+++ b/libc/stdlib/l64a.c
@@ -32,9 +32,7 @@ static const char conv_table[64] =
's', 't', 'u', 'v', 'w', 'x', 'y', 'z'
};
-char *
-l64a (n)
- long int n;
+char * l64a (long int n)
{
unsigned long int m = (unsigned long int) n;
static char result[7];