blob: d55f2c2a61ebd0bb50dafc5ca829a18b50cd4c5f [file] [log] [blame]
Jan Kundrát2e3f9352021-12-11 02:16:27 +01001/**
2 * @file main_ni_only.c
3 * @brief non-interactive implementation of main() for those platforms without the linenoise library
4 *
5 * Copyright (c) 2015-2021 CESNET, z.s.p.o.
6 *
7 * This source code is licensed under BSD 3-Clause License (the "License").
8 * You may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * https://opensource.org/licenses/BSD-3-Clause
12 */
13
14int main_ni(int argc, char *argv[]);
15
16int done; /* for cmd.c */
17
18int
19main(int argc, char *argv[])
20{
21 return main_ni(argc, argv);
22}