summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-01-21 19:50:40 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-01-21 19:50:40 +0000
commit9587f4726653700be7c8373209210bcf9512711e (patch)
tree04655d6a95a405393de54628ad3eeb459f984d86 /include
parentcbb23386b36e20b414a76654368719582f1ec799 (diff)
Prototype llabs(3). Forgotten commit gathering bit rot in my tree...
Diffstat (limited to 'include')
-rw-r--r--include/stdlib.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index 85c69d0b64d..0f948ad9eb7 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stdlib.h,v 1.28 2003/08/01 17:38:33 avsm Exp $ */
+/* $OpenBSD: stdlib.h,v 1.29 2004/01/21 19:50:39 millert Exp $ */
/* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */
/*-
@@ -117,6 +117,8 @@ char *gcvt(double, int, char *);
char *getenv(const char *);
long labs(long);
ldiv_t ldiv(long, long);
+long long
+ llabs(long long);
void *malloc(size_t);
void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
int rand(void);