mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-05 21:00:33 +09:00
17 lines
231 B
C
17 lines
231 B
C
#include "torture.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
static int verbosity = 0;
|
|
|
|
int torture_libssh_verbosity(void){
|
|
return verbosity;
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
(void) argc;
|
|
(void) argv;
|
|
|
|
return torture_run_tests();
|
|
}
|