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/bsd-snprintf.h | |
parent | 09bfb50d0dc78390593749e6f37e403da404dc94 (diff) | |
parent | 086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff) |
Import OpenSSH 4.7p1.
Diffstat (limited to 'openbsd-compat/bsd-snprintf.h')
-rw-r--r-- | openbsd-compat/bsd-snprintf.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-snprintf.h b/openbsd-compat/bsd-snprintf.h new file mode 100644 index 000000000..002b764e3 --- /dev/null +++ b/openbsd-compat/bsd-snprintf.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* $Id: bsd-snprintf.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */ | ||
2 | |||
3 | #ifndef _BSD_SNPRINTF_H | ||
4 | #define _BSD_SNPRINTF_H | ||
5 | |||
6 | #include "config.h" | ||
7 | |||
8 | #include <sys/types.h> /* For size_t */ | ||
9 | |||
10 | #ifndef HAVE_SNPRINTF | ||
11 | int snprintf(char *str, size_t count, const char *fmt, ...); | ||
12 | #endif /* !HAVE_SNPRINTF */ | ||
13 | |||
14 | #ifndef HAVE_VSNPRINTF | ||
15 | int vsnprintf(char *str, size_t count, const char *fmt, va_list args); | ||
16 | #endif /* !HAVE_SNPRINTF */ | ||
17 | |||
18 | |||
19 | #endif /* _BSD_SNPRINTF_H */ | ||