1 #include <libssh2.h>
2 #include <libssh2_sftp.h>
3 
main()4 int main()
5 {
6 	if ( libssh2_init( 0 ) ) { return 1; }
7 
8 	return 0;
9 }
10 
11