mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
0e513252b5
Requested by: obrien Reviewed by: rwatson
13 lines
355 B
C
13 lines
355 B
C
/* $FreeBSD$ */
|
|
/* $OpenBSD: version.h,v 1.23 2001/04/24 16:43:16 markus Exp $ */
|
|
|
|
#ifndef SSH_VERSION
|
|
|
|
#define SSH_VERSION (ssh_version_get())
|
|
#define SSH_VERSION_BASE "OpenSSH_2.9"
|
|
#define SSH_VERSION_ADDENDUM "FreeBSD localisations 20010713"
|
|
|
|
const char *ssh_version_get(void);
|
|
void ssh_version_set_addendum(const char *add);
|
|
#endif /* SSH_VERSION */
|