History log of /openbsd-src/libexec/tradcpp/files.c (Results 1 – 6 of 6)
Revision Date Author Comments
# 88157d21 23-Aug-2019 jsg <jsg@openbsd.org>

update tradcpp to 0.5.3


# 696e08c4 28-Jun-2019 deraadt <deraadt@openbsd.org>

When system calls indicate an error they return -1, not some arbitrary
value < 0. errno is only updated in this case. Change all (most?)
callers of syscalls to follow this better, and let's see if

When system calls indicate an error they return -1, not some arbitrary
value < 0. errno is only updated in this case. Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.

show more ...


# f9343fea 02-Sep-2018 jsg <jsg@openbsd.org>

update tradcpp to 0.5.2
ok miko@ bcallah@ deraadt@


# 2fbb987b 17-Jan-2015 deraadt <deraadt@openbsd.org>

eliminate strcpy & strcat, by using strlcpy, strlcat or snprintf where
suitable.
ok jsg


# dc9523b7 08-Aug-2014 jsg <jsg@openbsd.org>

Add support for using - as shorthand for stdin/stdout in tradcpp.

When looking into switching the /usr/bin/cpp wrapper to
tradcpp I came across "| ${CPP} ${CPPFLAGS} -" in usr.bin/which.

gcc docume

Add support for using - as shorthand for stdin/stdout in tradcpp.

When looking into switching the /usr/bin/cpp wrapper to
tradcpp I came across "| ${CPP} ${CPPFLAGS} -" in usr.bin/which.

gcc documents this behaviour for cpp here:
https://gcc.gnu.org/onlinedocs/cpp/Invocation.html

Versions of the John F. Reiser derived cpp in 32V and CSRG SCCS
accept this usage as well, as does the cpp in PCC.

show more ...


# a9b3ff1a 30-Jul-2014 jsg <jsg@openbsd.org>

Add tradcpp 0.4, a standalone traditional whitespace preserving cpp
by David A. Holland of NetBSD.