aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-07-30 21:41:37 +0000
committerEric Andersen <andersen@codepoet.org>2001-07-30 21:41:37 +0000
commit74bcd1642597109661543d25304c551a2e39acbc (patch)
treef54a28df9cd460c1da85e13e6fe1b387199f92df /include
parentdc6647201da6d5cf044f4b54fe9826c89068b782 (diff)
downloadbusybox-74bcd1642597109661543d25304c551a2e39acbc.tar.gz
This incorporates Posix math support into ash. The Posix math support
was written by Aaron Lehmann <aaronl@vitelus.com> for busybox. This patch makes a few trivial changes to Aaron's code so that it can be used (in theory) by the other shells as well... -Erik
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 3cf932dc4..66acc2278 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -212,6 +212,8 @@ char *xreadlink(const char *path);
char *concat_path_file(const char *path, const char *filename);
char *last_char_is(const char *s, int c);
+extern long arith (const char *startbuf);
+
typedef struct file_headers_s {
char *name;
char *link_name;