1769 dladm show-link truncates OVER field
[unleashed.git] / usr / src / cmd / ssh / include / bsd-snprintf.h
blob71691a01d37644690d1618602aaf84e7ea13cead
1 /* $Id: bsd-snprintf.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
3 #ifndef _BSD_SNPRINTF_H
4 #define _BSD_SNPRINTF_H
6 #pragma ident "%Z%%M% %I% %E% SMI"
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
12 #include "config.h"
14 #include <sys/types.h> /* For size_t */
16 #ifndef HAVE_SNPRINTF
17 int snprintf(char *str, size_t count, const char *fmt, ...);
18 #endif /* !HAVE_SNPRINTF */
20 #ifndef HAVE_VSNPRINTF
21 int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
22 #endif /* !HAVE_SNPRINTF */
24 #ifdef __cplusplus
26 #endif
28 #endif /* _BSD_SNPRINTF_H */