ref: 5ff7476488a01902d14df4f4c8424c9c436a59c2
parent: 6e03c31865cf9167ec3e8743ed3700b3e7bcba2d
author: Ori Bernstein <[email protected]>
date: Wed Jun 20 07:54:37 EDT 2012
Style fix. Get rid of a manifest type.
--- a/test/hello/sys.myr
+++ b/test/hello/sys.myr
@@ -65,5 +65,5 @@
const creat = {path, mode; -> syscall(Syscreat, 2, path castto(char*), mode);}
const read = {fd, buf; -> syscall(Sysread, 3, fd, buf castto(char*), buf.len);}
const write = {fd, buf; -> syscall(Syswrite, 3, fd, buf castto(char*), buf.len);}
-const lseek = {fd, off:uint, whence;-> syscall(Syslseek, 2, fd, off, whence);}
+const lseek = {fd, off, whence; -> syscall(Syslseek, 2, fd, off, whence);}
const fstat = {fd, sb; -> syscall(Sysfstat, 2, fd, sb);}