Jan Kundrát | 2e3f935 | 2021-12-11 02:16:27 +0100 | [diff] [blame] | 1 | /** |
| 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 | |
| 14 | int main_ni(int argc, char *argv[]); |
| 15 | |
| 16 | int done; /* for cmd.c */ |
| 17 | |
| 18 | int |
| 19 | main(int argc, char *argv[]) |
| 20 | { |
| 21 | return main_ni(argc, argv); |
| 22 | } |