diff options
author | Colin Watson <cjwatson@debian.org> | 2007-12-23 15:20:40 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2007-12-23 15:20:40 +0000 |
commit | 70847d299887abb96f8703ca99db6d817b78960e (patch) | |
tree | f8e6473c82fb339cbbb1d6598a9dc1c7f122c7cc /openbsd-compat/strlcat.h | |
parent | 09bfb50d0dc78390593749e6f37e403da404dc94 (diff) | |
parent | 086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff) |
Import OpenSSH 4.7p1.
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 */ | ||