FreeBSD tweaks

This commit is contained in:
rsc 2004-12-28 17:34:05 +00:00
parent d54ead7fb9
commit f7b74c1725
11 changed files with 26 additions and 22 deletions

View file

@ -38,9 +38,9 @@ void usage(void);
extern int notify(void(*)(void*,char*));
int
main(int argc, char *argv[])
main(int volatile argc, char **volatile argv)
{
int i;
int volatile i;
String *t;
char **ap, **arg;

View file

@ -13,7 +13,8 @@ plan9(File *f, int type, String *s, int nest)
{
long l;
int m;
int pid, fd;
int volatile pid;
int fd;
int retcode;
int pipe1[2], pipe2[2];