浏览代码

Merge pull request #4388 from mysterywolf/getline

[libc][getline] 删除不必要的声明信息
Bernard Xiong 4 年之前
父节点
当前提交
0a54f4c3dd

+ 3 - 3
components/libc/Kconfig

@@ -54,9 +54,9 @@ if RT_USING_LIBC
 endif
 endif
 
 
 if RT_USING_LIBC != y
 if RT_USING_LIBC != y
-        config RT_LIBC_USING_TIME
-        bool "Enable TIME FUNCTIONS WITHOUT COMPILER'S LIBC"
-        default y
+    config RT_LIBC_USING_TIME
+    bool "Enable TIME FUNCTIONS WITHOUT COMPILER'S LIBC"
+    default y
 endif
 endif
 
 
 endmenu
 endmenu

+ 0 - 10
components/libc/getline/README.md

@@ -18,13 +18,3 @@ For more details, see [Open Group Base Specification for getdelim/getline][openg
 This code is unlicensed -- free and released into the public domain. See `UNLICENSE` file for more information.
 This code is unlicensed -- free and released into the public domain. See `UNLICENSE` file for more information.
 
 
 [opengroup-spec]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/getline.html
 [opengroup-spec]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/getline.html
-
-
-
-
-## 联系&维护
-Meco Man 
-
-jiantingman@foxmail.com
-
-https://github.com/mysterywolf/getline

+ 1 - 2
components/libc/getline/posix_getline.c

@@ -5,9 +5,8 @@
  * https://man7.org/linux/man-pages/man3/getline.3.html
  * https://man7.org/linux/man-pages/man3/getline.3.html
  * Authors:
  * Authors:
  *     https://github.com/ivanrad/getline
  *     https://github.com/ivanrad/getline
- *     https://github.com/mysterywolf/getline/
  * 
  * 
- * Meco Man    2020-09-03    First Version
+ * Meco Man    2020-09-03    porting to RT-Thread
  */
  */
 
 
 #include "posix_getline.h"
 #include "posix_getline.h"

+ 1 - 2
components/libc/getline/posix_getline.h

@@ -5,9 +5,8 @@
  * https://man7.org/linux/man-pages/man3/getline.3.html
  * https://man7.org/linux/man-pages/man3/getline.3.html
  * Authors:
  * Authors:
  *     https://github.com/ivanrad/getline
  *     https://github.com/ivanrad/getline
- *     https://github.com/mysterywolf/getline/
  *
  *
- * Meco Man    2020-09-03    First Version
+ * Meco Man    2020-09-03    porting to RT-Thread
  */
  */