NetBSD/usr.sbin/ypbind
cgd 8d81e0e116 __CONCAT does token pasting, not string concatnation. if something like:
__CONCAT("foo","bar");
actually works to concantate strings, it's because the preprocessor expands
it into "foo""bar" as separate strings, and then ANSI string concatenation
is performed on that.  It's more straightforward to just use ANSI string
concatenation directly, and newer GCCs complain (rightly) about misuse
of token pasting.
2000-12-20 01:34:39 +00:00
..
Makefile
pathnames.h
ypbind.8
ypbind.c __CONCAT does token pasting, not string concatnation. if something like: 2000-12-20 01:34:39 +00:00