mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-15 06:34:38 +00:00
00d4bb117a
- Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
19 lines
400 B
C
19 lines
400 B
C
#ifndef _BSD_SNPRINTF_H
|
|
#define _BSD_SNPRINTF_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <sys/types.h> /* For size_t */
|
|
#include <varargs.h> /* For va_list */
|
|
|
|
#ifndef HAVE_SNPRINTF
|
|
int snprintf(char *str, size_t n, char const *fmt, ...);
|
|
#endif /* !HAVE_SNPRINTF */
|
|
|
|
#ifndef HAVE_VSNPRINTF
|
|
int vsnprintf(char *str, size_t n, char *fmt, va_list *ap);
|
|
#endif /* !HAVE_SNPRINTF */
|
|
|
|
|
|
#endif /* _BSD_SNPRINTF_H */
|