diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
commit | 11975abb2c891e563dbed51a52c050ea0b05b8a4 (patch) | |
tree | d99ca21591a2528ac4546b64c8f703b0fc6dac34 /libc/stdlib/a64l.c | |
parent | 6a9087f96b69f1b8cea5cee76a27784d2b131cd2 (diff) | |
download | uClibc-alpine-11975abb2c891e563dbed51a52c050ea0b05b8a4.tar.bz2 uClibc-alpine-11975abb2c891e563dbed51a52c050ea0b05b8a4.tar.xz |
- remove old-style definitions. No object-code changes.
Diffstat (limited to 'libc/stdlib/a64l.c')
-rw-r--r-- | libc/stdlib/a64l.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/stdlib/a64l.c b/libc/stdlib/a64l.c index 23faf2744..d09dbf464 100644 --- a/libc/stdlib/a64l.c +++ b/libc/stdlib/a64l.c @@ -36,9 +36,7 @@ static const char a64l_table[TABLE_SIZE] = }; -long int -a64l (string) - const char *string; +long int a64l (const char *string) { const char *ptr = string; unsigned long int result = 0ul; |