repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
re-enable munmap().
[minix.git]
/
commands
/
m4
/
Hanoi.m4
blob
6a8f1b63220f70cb7e0255600a6bd6a1df5a3807
1
define(hanoi, `trans(A, B, C, $1)')
2
3
define(moved,`move disk from $1 to $2
4
')
5
6
define(trans, `ifelse($4,1,`moved($1,$2)',
7
`trans($1,$3,$2,DECR($4))moved($1,$2)trans($3,$2,$1,DECR($4))')')