Mercurial > hg > xemacs-beta
view move-if-change @ 2646:5e4893b16f7c
[xemacs-hg @ 2005-03-10 09:19:14 by crestani]
Add missing typecasts.
2005-03-09 Marcus Crestani <crestani@informatik.uni-tuebingen.de>
* database.c (berkdb_map): Add typecasts.
author | crestani |
---|---|
date | Thu, 10 Mar 2005 09:19:16 +0000 |
parents | 376386a54a3c |
children |
line wrap: on
line source
#!/bin/sh if test -r $2 then if cmp $1 $2 > /dev/null then echo $2 is unchanged rm -f $1 else mv -f $1 $2 fi else mv -f $1 $2 fi