diff options
author | Darren Tucker <dtucker@zip.com.au> | 2013-02-15 02:13:01 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2013-02-15 02:13:01 +0100 |
commit | 8e6fb780e54f484e3dca4f1bf0abcd9bf13f092f (patch) | |
tree | d28a08a3db08e470474a0aa8efde812f7b59b874 /openbsd-compat/openbsd-compat.h | |
parent | spacing (diff) | |
download | openssh-8e6fb780e54f484e3dca4f1bf0abcd9bf13f092f.tar.xz openssh-8e6fb780e54f484e3dca4f1bf0abcd9bf13f092f.zip |
- (dtucker) [configure.ac openbsd-compat/Makefile.in openbsd-compat/strtoull.c
openbsd-compat/openbsd-compat.h] Add strtoull to compat library for
platforms that don't have it.
Diffstat (limited to 'openbsd-compat/openbsd-compat.h')
-rw-r--r-- | openbsd-compat/openbsd-compat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index 664cb0445..99cebef71 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h @@ -1,4 +1,4 @@ -/* $Id: openbsd-compat.h,v 1.53 2012/11/05 06:04:38 dtucker Exp $ */ +/* $Id: openbsd-compat.h,v 1.54 2013/02/15 01:13:02 dtucker Exp $ */ /* * Copyright (c) 1999-2003 Damien Miller. All rights reserved. @@ -218,6 +218,10 @@ char *group_from_gid(gid_t, int); int timingsafe_bcmp(const void *, const void *, size_t); #endif +#ifndef HAVE_STRTOULL +unsigned long long strtoull(const char *, char **, int); +#endif + void *xmmap(size_t size); char *xcrypt(const char *password, const char *salt); char *shadow_pw(struct passwd *pw); |