From e1428f6838a79468bb960c5e6288c707bf975deb Mon Sep 17 00:00:00 2001 From: millert <> Date: Mon, 2 Dec 2002 02:07:28 +0000 Subject: [PATCH] Add prototype for atoll(3). I must have forgotten to commit this bit when I committed atoll(3). --- src/include/stdlib.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 71c22af6..91e55cbd 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.21 2002/10/25 21:55:28 millert Exp $ */ +/* $OpenBSD: stdlib.h,v 1.22 2002/12/02 02:07:28 millert Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -108,6 +108,7 @@ int atexit(void (*)(void)); double atof(const char *); int atoi(const char *); long atol(const char *); +long long atoll(const char *); void *bsearch(const void *, const void *, size_t, size_t, int (*)(const void *, const void *)); void *calloc(size_t, size_t);