blob: 4b4cc1c3bf3925352a7cde726a9249b037d7e8db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* STATICd - vty header
* Copyright (C) 2018 Cumulus Networks, Inc.
* Donald Sharp
*/
#ifndef __STATIC_VTY_H__
#define __STATIC_VTY_H__
#ifdef __cplusplus
extern "C" {
#endif
void static_vty_init(void);
#ifdef __cplusplus
}
#endif
#endif
|