mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
19 lines
307 B
C
19 lines
307 B
C
|
/* Copyright 2001,2002 Roger Dingledine, Matej Pfajfar. */
|
||
|
/* See LICENSE for licensing information */
|
||
|
/* $Id$ */
|
||
|
|
||
|
int tor_main(int argc, char *argv[]);
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return tor_main(argc, argv);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
Local Variables:
|
||
|
mode:c
|
||
|
indent-tabs-mode:nil
|
||
|
c-basic-offset:2
|
||
|
End:
|
||
|
*/
|