diff options
Diffstat (limited to 'lib/libc/stdlib/strtonum.c')
-rw-r--r-- | lib/libc/stdlib/strtonum.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/strtonum.c b/lib/libc/stdlib/strtonum.c index 1aeee3467b8..ad22d1c30c5 100644 --- a/lib/libc/stdlib/strtonum.c +++ b/lib/libc/stdlib/strtonum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strtonum.c,v 1.7 2013/04/17 18:40:58 tedu Exp $ */ +/* $OpenBSD: strtonum.c,v 1.8 2015/09/13 08:31:48 guenther Exp $ */ /* * Copyright (c) 2004 Ted Unangst and Todd Miller @@ -63,3 +63,4 @@ strtonum(const char *numstr, long long minval, long long maxval, return (ll); } +DEF_WEAK(strtonum); |