diff options
author | Darren Tucker <dtucker@zip.com.au> | 2010-01-16 13:30:30 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2010-01-16 13:30:30 +1100 |
commit | 69371b511b998f2637fdf4bf708e15462162bc0d (patch) | |
tree | 8f5b641275a0448f0375b2d8b7f4ae4b6e1541c7 /openbsd-compat/openbsd-compat.h | |
parent | 2563e3f2729b90b62cc0a53137a516d2f009dc53 (diff) |
- (dtucker) [openbsd-compat/openbsd-compat.h] Fix prototypes, spotted by
Tim.
Diffstat (limited to 'openbsd-compat/openbsd-compat.h')
-rw-r--r-- | openbsd-compat/openbsd-compat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsd-compat/openbsd-compat.h b/openbsd-compat/openbsd-compat.h index a38068d71..020032bc4 100644 --- a/openbsd-compat/openbsd-compat.h +++ b/openbsd-compat/openbsd-compat.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $Id: openbsd-compat.h,v 1.47 2010/01/16 00:53:07 dtucker Exp $ */ | 1 | /* $Id: openbsd-compat.h,v 1.48 2010/01/16 02:30:30 dtucker Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1999-2003 Damien Miller. All rights reserved. | 4 | * Copyright (c) 1999-2003 Damien Miller. All rights reserved. |
@@ -201,11 +201,11 @@ int vsnprintf(char *, size_t, const char *, va_list); | |||
201 | #endif | 201 | #endif |
202 | 202 | ||
203 | #ifndef HAVE_USER_FROM_UID | 203 | #ifndef HAVE_USER_FROM_UID |
204 | char *user_from_uid(uid_t); | 204 | char *user_from_uid(uid_t, int); |
205 | #endif | 205 | #endif |
206 | 206 | ||
207 | #ifndef HAVE_GROUP_FROM_GUID | 207 | #ifndef HAVE_GROUP_FROM_GUID |
208 | char *group_from_gid(gid_t); | 208 | char *group_from_gid(gid_t, int); |
209 | #endif | 209 | #endif |
210 | 210 | ||
211 | void *xmmap(size_t size); | 211 | void *xmmap(size_t size); |