diff options
author | Russ Allbery <rra@stanford.edu> | 2008-04-07 19:43:02 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2008-04-07 19:43:02 +0000 |
commit | 307ba7704617f8473644e571a6d63aba8de53dec (patch) | |
tree | f370092c6b91bb325ec3eb67471f1149b46051f5 /system.h | |
parent | 5c7f925d454d16cf6427f3d3e9e2a5f0299ca085 (diff) |
Add support for enabling and disabling principals (clearing or setting
the NOTGS flag) and examining principals to kasetkey. This
functionality isn't used by wallet (and probably won't be) but is
convenient for other users of kasetkey such as kadmin-remctl.
Diffstat (limited to 'system.h')
-rw-r--r-- | system.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -73,6 +73,12 @@ extern int snprintf(char *, size_t, const char *, ...) #if !HAVE_DECL_VSNPRINTF extern int vsnprintf(char *, size_t, const char *, va_list); #endif +#if !HAVE_STRLCAT +extern size_t strlcat(char *, const char *, size_t); +#endif +#if !HAVE_STRLCPY +extern size_t strlcpy(char *, const char *, size_t); +#endif END_DECLS |