From 591aacee97f4a6486631c38a6b418e20b2c4109c Mon Sep 17 00:00:00 2001 From: wangzhengquan <wangzhengquan85@126.com> Date: 星期四, 10 九月 2020 14:56:47 +0800 Subject: [PATCH] update --- common/include/usg_typedef.h | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/common/include/usg_typedef.h b/common/include/usg_typedef.h index a3b9a81..55796e1 100644 --- a/common/include/usg_typedef.h +++ b/common/include/usg_typedef.h @@ -43,7 +43,10 @@ #define MIN(a,b) ((a) < (b) ? (a) : (b)) #define MAX(a,b) ((a) > (b) ? (a) : (b)) - + +/* Misc constants */ +#define MAXLINE 1024 /* Max text line length */ +#define MAXBUF 8192 /* Max I/O buffer size */ #ifdef __cplusplus } -- Gitblit v1.8.0