]> andersk Git - openssh.git/blame - bsd-snprintf.h
- (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
[openssh.git] / bsd-snprintf.h
CommitLineData
dad3b556 1#ifndef _BSD_SNPRINTF_H
2#define _BSD_SNPRINTF_H
3
4#include "config.h"
5
6#include <sys/types.h> /* For size_t */
7
8#ifndef HAVE_SNPRINTF
9int snprintf(char *str, size_t n, char const *fmt, ...);
10#endif /* !HAVE_SNPRINTF */
11
12#ifndef HAVE_VSNPRINTF
4d33e531 13int vsnprintf(char *str, size_t n, char *fmt, va_list ap);
dad3b556 14#endif /* !HAVE_SNPRINTF */
15
16
17#endif /* _BSD_SNPRINTF_H */
This page took 0.088185 seconds and 5 git commands to generate.