diff options
author | Colin Watson <cjwatson@debian.org> | 2004-03-01 01:21:46 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2004-03-01 01:21:46 +0000 |
commit | f5bda272678ec6dccaa5f29379cf60cb855018e8 (patch) | |
tree | c225d6ba3d09bb5ece49c05fdbaeb02df3c94a28 /openbsd-compat/strlcat.h | |
parent | 3342470472b45f000576e9f79f55bb30c7d517b8 (diff) | |
parent | 45431c9b4677608680cd071768cbf156b316a7e8 (diff) |
Import OpenSSH 3.8p1.
Diffstat (limited to 'openbsd-compat/strlcat.h')
-rw-r--r-- | openbsd-compat/strlcat.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/openbsd-compat/strlcat.h b/openbsd-compat/strlcat.h new file mode 100644 index 000000000..753668563 --- /dev/null +++ b/openbsd-compat/strlcat.h | |||
@@ -0,0 +1,12 @@ | |||
1 | /* $Id: strlcat.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ | ||
2 | |||
3 | #ifndef _BSD_STRLCAT_H | ||
4 | #define _BSD_STRLCAT_H | ||
5 | |||
6 | #include "config.h" | ||
7 | #ifndef HAVE_STRLCAT | ||
8 | #include <sys/types.h> | ||
9 | size_t strlcat(char *dst, const char *src, size_t siz); | ||
10 | #endif /* !HAVE_STRLCAT */ | ||
11 | |||
12 | #endif /* _BSD_STRLCAT_H */ | ||