You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/subversion-test.c

9 lines
155 B

#include <svn_cmdline.h>
int main (void) {
if (svn_cmdline_init("mxe_test", stderr) != EXIT_SUCCESS)
return EXIT_FAILURE;
return EXIT_SUCCESS;
}