[libc] Add mmap API

This commit is contained in:
bernard
2017-11-30 21:18:55 +08:00
parent 9a82952707
commit ed033053cf
6 changed files with 382 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_DFS', 'RT_USING_POSIX_MMAP'],
CPPPATH = CPPPATH)
Return('group')