Home
last modified time | relevance | path

Searched hist:a16664ce8cd5456b7f21856c85e272cef68b3725 (Results 1 – 1 of 1) sorted by relevance

/freebsd/stand/liblua/
H A Dlutils.cdiff a16664ce8cd5456b7f21856c85e272cef68b3725 Fri Mar 02 17:31:23 CET 2018 Kyle Evans <kevans@FreeBSD.org> 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