1 /*
2  * Project Acrn
3  * Acrn-dm-pty
4  *
5  * Copyright (C) 2019-2022 Intel Corporation.
6  *
7  * SPDX-License-Identifier: BSD-3-Clause
8  *
9  */
10 
11 #ifndef __PTY_H__
12 #define __PTY_H__
13 
14 int pty_open_virtual_uart(const char *dev_name);
15 
16 #endif
17