diff options
Diffstat (limited to 'client/client.c')
-rw-r--r-- | client/client.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/client/client.c b/client/client.c new file mode 100644 index 0000000..ea12c29 --- /dev/null +++ b/client/client.c @@ -0,0 +1,16 @@ +/* + * BIRD Client + * + * (c) 1999 Martin Mares <mj@ucw.cz> + * + * Can be freely distributed and used under the terms of the GNU GPL. + */ + +#include "nest/bird.h" +#include "client/client.h" + +int +main(int argc, char **argv) +{ + return client_main(argc, argv); /* Call sysdep code */ +} |