NetBSD/usr.bin/w
cgd 2af1e46eab __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:17:49 +00:00
..
Makefile add code to recognize special ftpd utmp entries and match corresponding 2000-09-28 18:20:29 +00:00
extern.h Use new sysctl/kvm interfaces and remove sgid bit. 2000-05-26 03:10:31 +00:00
pr_time.c __CONCAT does token pasting, not string concatnation. if something like: 2000-12-20 01:17:49 +00:00
proc_compare.c Use new sysctl/kvm interfaces and remove sgid bit. 2000-05-26 03:10:31 +00:00
uptime.1 More and more .Os cleanups. .Os is defined in the tmac.doc-common file, 1999-03-22 18:16:34 +00:00
w.1 More and more .Os cleanups. .Os is defined in the tmac.doc-common file, 1999-03-22 18:16:34 +00:00
w.c __CONCAT does token pasting, not string concatnation. if something like: 2000-12-20 01:17:49 +00:00