the end of life as we know it

int is new type

R=r
OCL=18023
CL=18023
This commit is contained in:
Ken Thompson 2008-10-29 12:46:44 -07:00
parent 0ed4576c6a
commit c21d9a1ec9
16 changed files with 292 additions and 184 deletions

View file

@ -164,7 +164,7 @@ export func atol(s string) (i int64, ok bool) {
export func atoi(s string) (i int, ok bool) {
ii, okok := atol(s);
i = int32(ii);
i = int(ii);
return i, okok
}