MirBSD Korn Shell for Jehanne
Go to file
tg 31d2796169 simplify
if ((flags & (1 | 2) == 0) || (flags & (1 | 2) == (1 | 2)))
to
	if (!(flags & 1) ^ !(flags & 2))
which works because ! returns 1 or 0, making the ^ an ^^, and
because XOR survives NOTting its arguments
2009-04-07 19:08:25 +00:00
Build.sh try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
Makefile (experimental) implement getrusage via times if not found 2009-04-03 09:39:07 +00:00
check.pl pass LOCPATH environment variable too, might be needed on glibc systems 2009-04-07 18:45:19 +00:00
check.t decouple conservative file descriptor use from MKSH_SMALL, with the 2009-04-06 08:33:37 +00:00
copyright remove espie's double-linked-list based allocator and write a 2009-03-22 16:55:38 +00:00
dot.mkshrc shorten 2009-04-05 12:42:34 +00:00
edit.c try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
eval.c try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
exec.c sync; fold oksh-seterror test into errexit-*; use print not printf 2009-03-22 18:28:35 +00:00
expr.c try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
funcs.c fix jobless mksh so much to make it work on Minix 3 2009-04-05 12:35:32 +00:00
histrap.c try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
jobs.c try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
lalloc.c employ some "nice" constants and comment lalloc.c 2009-04-07 18:56:51 +00:00
lex.c tabs vs spaces 2009-04-07 19:06:44 +00:00
main.c fix jobless mksh so much to make it work on Minix 3 2009-04-05 12:35:32 +00:00
misc.c fix jobless mksh so much to make it work on Minix 3 2009-04-05 12:35:32 +00:00
mksh.1 • document new (clarified) macro behaviour – bugfix 2009-04-05 12:45:25 +00:00
setmode.c try to do some optimum struct packing except for struct env 2009-04-07 18:41:37 +00:00
sh.h employ some "nice" constants and comment lalloc.c 2009-04-07 18:56:51 +00:00
shf.c simplify 2009-04-07 19:08:25 +00:00
strlcpy.c
syn.c tabs vs spaces 2009-04-07 19:06:44 +00:00
tree.c
var.c tabs vs spaces 2009-04-07 19:06:44 +00:00