From 91ea28a625092794cb44aa9c0a8fdc33617e37ed Mon Sep 17 00:00:00 2001 From: "Man, Jianting (Meco)" <920369182@qq.com> Date: Wed, 2 Mar 2022 05:45:19 -0500 Subject: [PATCH] =?UTF-8?q?[pipe.h]=20=E7=A7=BB=E9=99=A4=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E5=A4=B4=E6=96=87=E4=BB=B6=EF=BC=8C=E9=98=B2=E6=AD=A2?= =?UTF-8?q?=E5=BD=A2=E6=88=90=E5=A4=B4=E6=96=87=E4=BB=B6=E9=80=92=E5=BD=92?= =?UTF-8?q?=E5=8C=85=E5=90=AB=20(#5621)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/drivers/include/ipc/pipe.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/components/drivers/include/ipc/pipe.h b/components/drivers/include/ipc/pipe.h index 7d271c3a04..08b9f266c8 100644 --- a/components/drivers/include/ipc/pipe.h +++ b/components/drivers/include/ipc/pipe.h @@ -1,19 +1,20 @@ /* - * Copyright (c) 2006-2021, RT-Thread Development Team + * Copyright (c) 2006-2022, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes */ + #ifndef PIPE_H__ #define PIPE_H__ +#include + /** * Pipe Device */ -#include -#include struct rt_pipe_device { @@ -36,4 +37,5 @@ typedef struct rt_pipe_device rt_pipe_t; rt_pipe_t *rt_pipe_create(const char *name, int bufsz); int rt_pipe_delete(const char *name); + #endif /* PIPE_H__ */ -- GitLab