projects
/
xboard.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix for bug #27715: 2 (minor) graphic issues
[xboard.git]
/
bitmaps
/
unsigned.sh
1
#! /bin/csh
2
3
foreach file ($*)
4
mv $file ${file}.old$$ && \
5
sed -e 's/static char/static unsigned char/' < $file.old$$ > $file && \
6
rm ${file}.old$$
7
end
8