Differences From Artifact [1b46213bbd]:
- File kio/send.fn.c — part of check-in [cef83f0167] at 2019-08-21 00:16:00 on branch trunk — switch ansi "bold off" code to "reset" for terminals that interpret "bold off" as "double underline"; remove (incorrect) test code from kiosend (user: lexi, size: 1802) [annotate] [blame] [check-ins using]
- File mod/kio/send.fn.c — part of check-in [14172a910a] at 2019-08-21 06:00:24 on branch trunk — move modules to a subdirectory in order to keep the directory tree organized and make room for OS-specific build files (user: lexi, size: 1802) [annotate] [blame] [check-ins using]
To Artifact [9e8cd30a43]:
- File mod/kio/send.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: 1796) [annotate] [blame] [check-ins using]
6 6 * kiosend() writes to a channel with an open out stream 7 7 */ 8 8 9 9 /* we define all platform functions here, 10 10 * whether or not they're for the correct 11 11 * platform - only the ones actually called 12 12 * by the generated code will be linked */ 13 -#include <posix/posix.h> 13 +#include <posix.h> 14 14 #include <error_table.h> 15 15 16 16 kiocond kiosend(kiochan target, ksraw string, sz* len) { 17 17 if (target.out.kind == kiostream_closed) return kiocond_fail_closed_stream; 18 18 19 19 # ifdef KFenv_posix 20 20 /* issue the write syscall here and now so we can