]> andersk Git - openssh.git/blame - openbsd-compat/bsd-snprintf.h
- (dtucker) [auth.c] Do not check for locked accounts when PAM is enabled.
[openssh.git] / openbsd-compat / bsd-snprintf.h
CommitLineData
0b202697 1/* $Id$ */
2
dad3b556 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
9901cb37 11int snprintf(char *, size_t, const char *, ...);
dad3b556 12#endif /* !HAVE_SNPRINTF */
13
14#ifndef HAVE_VSNPRINTF
9901cb37 15int vsnprintf(char *, size_t, const char *, va_list);
dad3b556 16#endif /* !HAVE_SNPRINTF */
17
18
19#endif /* _BSD_SNPRINTF_H */
This page took 4.684258 seconds and 5 git commands to generate.