Differences From Artifact [0011a847e1]:
- File mod/kmem/lina.fn.c — part of check-in [269baab90a] at 2019-08-22 08:45:23 on branch trunk — check in missing files (user: lexi, size: 712) [annotate] [blame] [check-ins using]
To Artifact [5feb3edaf1]:
- File mod/kmem/lina.fn.c — part of check-in [e42b590b45] at 2019-08-24 23:02:13 on branch trunk — stop attempting to auto-detect system constants during build process, and maintain os/arch-specific tables instead (user: lexi, size: 706) [annotate] [blame] [check-ins using]
5 5 * this memory simply by growing the heap the proper 6 6 * length. */ 7 7 8 8 #include <k/mem.h> 9 9 #include <k/def.h> 10 10 11 11 #ifdef KFenv_posix 12 -# include <posix/posix.h> 12 +# include <posix.h> 13 13 #endif 14 14 15 15 kmres kmlina(sz size) { 16 16 k_platform_syscall_arg 17 17 top = (sz)kmlini(), 18 18 newbrk = top + size; 19 19