K 10 svn:author V 6 kevans K 8 svn:date V 27 2018-03-02T16:31:23.466701Z K 7 svn:log V 385 liblua: Use putc instead of printf for printc printc does not need the features or the overhead of printf. It does not take formatting strings, and it pipes the single string argument through an "%s" format. Instead, use putc directly. This pipes the string through in its entirety as a series of 'unsigned char's, generally straight to the console emulator. Discussed with: tsoome END