]> andersk Git - gssapi-openssh.git/blame - openssh/openbsd-compat/bsd-snprintf.h
no longer included in OpenSSH distribution
[gssapi-openssh.git] / openssh / openbsd-compat / bsd-snprintf.h
CommitLineData
3c0ef626 1/* $Id$ */
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
11int snprintf(char *str, size_t count, const char *fmt, ...);
12#endif /* !HAVE_SNPRINTF */
13
14#ifndef HAVE_VSNPRINTF
15int vsnprintf(char *str, size_t count, const char *fmt, va_list args);
16#endif /* !HAVE_SNPRINTF */
17
18
19#endif /* _BSD_SNPRINTF_H */
This page took 0.678991 seconds and 5 git commands to generate.