summaryrefslogtreecommitdiff
path: root/src/entrypoint/gateleenResclone.c
blob: 76c8175a8542bbc99d27faeab60951c8b19070b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* By using this work you agree to the terms and conditions in 'LICENSE.txt' */

/* Project */
#include "gateleen_resclone.h"
#include "util_term.h"


int
main( int argc, char**argv )
{
    int err;
    util_term_init();
    err = gateleenResclone_run( argc, argv );
    if( err<0 ){ err = 0-err; }
    return err>127 ? 1 : err;
}