FreeBSD tweaks
This commit is contained in:
parent
d54ead7fb9
commit
f7b74c1725
11 changed files with 26 additions and 22 deletions
|
|
@ -135,7 +135,7 @@ static int
|
|||
unztable(Biobuf *bin, char *file)
|
||||
{
|
||||
ZipHead zh;
|
||||
int entries;
|
||||
int volatile entries;
|
||||
|
||||
entries = findCDir(bin, file);
|
||||
if(entries < 0)
|
||||
|
|
@ -273,7 +273,7 @@ unzip(Biobuf *bin, char *file)
|
|||
{
|
||||
ZipHead zh;
|
||||
vlong off;
|
||||
int ok, eok, entries;
|
||||
int volatile ok, eok, entries;
|
||||
|
||||
entries = findCDir(bin, file);
|
||||
if(entries < 0)
|
||||
|
|
|
|||
|
|
@ -45,9 +45,9 @@ usage(void)
|
|||
}
|
||||
|
||||
void
|
||||
main(int argc, char *argv[])
|
||||
main(int volatile argc, char **volatile argv)
|
||||
{
|
||||
char *zfile;
|
||||
char *volatile zfile;
|
||||
int i, fd, err;
|
||||
|
||||
zfile = nil;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue