add posix functions getline/getdelim

This commit is contained in:
mysterywolf
2020-09-05 15:42:03 +08:00
parent d890d555a7
commit a41ebbb697
5 changed files with 167 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('libc', src,
depend = ['RT_USING_LIBC', 'RT_USING_POSIX'],
CPPPATH = CPPPATH)
Return('group')