Merge in Windows port using mingw and make.

This commit is contained in:
Russ Cox
2005-10-31 15:30:23 +00:00
parent d920d42c8b
commit 5d6ebf7a53
56 changed files with 730 additions and 978 deletions

View File

@ -445,12 +445,12 @@ kbdputc(Queue *q, int c)
if(c == Kalt){
collecting = 1;
nk = 0;
return;
return 0;
}
if(!collecting){
_kbdputc(c);
return;
return 0;
}
kc[nk++] = c;
@ -1034,8 +1034,7 @@ rand(void)
return randn;
}
/* static uvlong uvorder = 0x0001020304050607ULL; */
static uvlong uvorder = (uvlong)0x0001020304050607;
static uvlong uvorder = (uvlong) 0x0001020304050607ULL;
static uchar*
le2vlong(vlong *to, uchar *f)