aboutsummaryrefslogtreecommitdiff
path: root/src/lib/win32_os.rs
diff options
context:
space:
mode:
authorGraydon Hoare <[email protected]>2010-09-22 15:44:13 -0700
committerGraydon Hoare <[email protected]>2010-09-22 15:44:13 -0700
commit2880ecd73ff7443ad72eb7af3c85e673024fc7fd (patch)
treeb9e703a5e279db41fa36bdbe9674abe8f159e91c /src/lib/win32_os.rs
parentMove llvm-using code in rustc to trans module. (diff)
downloadrust-2880ecd73ff7443ad72eb7af3c85e673024fc7fd.tar.xz
rust-2880ecd73ff7443ad72eb7af3c85e673024fc7fd.zip
Reformat standard library; no code changes.
Diffstat (limited to 'src/lib/win32_os.rs')
-rw-r--r--src/lib/win32_os.rs49
1 files changed, 29 insertions, 20 deletions
diff --git a/src/lib/win32_os.rs b/src/lib/win32_os.rs
index 3a6da60f..e0ad4188 100644
--- a/src/lib/win32_os.rs
+++ b/src/lib/win32_os.rs
@@ -2,29 +2,38 @@ import _str.sbuf;
import _vec.vbuf;
native mod libc = "msvcrt.dll" {
- fn open(sbuf s, int flags, uint mode) -> int = "_open";
- fn read(int fd, vbuf buf, uint count) -> int = "_read";
- fn write(int fd, vbuf buf, uint count) -> int = "_write";
- fn close(int fd) -> int = "_close";
+ fn open(sbuf s, int flags, uint mode) -> int = "_open";
+ fn read(int fd, vbuf buf, uint count) -> int = "_read";
+ fn write(int fd, vbuf buf, uint count) -> int = "_write";
+ fn close(int fd) -> int = "_close";
- type FILE;
- fn fopen(sbuf path, sbuf mode) -> FILE;
- fn fclose(FILE f);
- fn fgetc(FILE f) -> int;
- fn ungetc(int c, FILE f);
+ type FILE;
+ fn fopen(sbuf path, sbuf mode) -> FILE;
+ fn fclose(FILE f);
+ fn fgetc(FILE f) -> int;
+ fn ungetc(int c, FILE f);
}
mod libc_constants {
- fn O_RDONLY() -> int { ret 0x0000; }
- fn O_WRONLY() -> int { ret 0x0001; }
- fn O_RDWR() -> int { ret 0x0002; }
- fn O_APPEND() -> int { ret 0x0400; }
- fn O_CREAT() -> int { ret 0x0040; }
- fn O_EXCL() -> int { ret 0x0080; }
- fn O_TRUNC() -> int { ret 0x0200; }
- fn O_TEXT() -> int { ret 0x4000; }
- fn O_BINARY() -> int { ret 0x8000; }
+ fn O_RDONLY() -> int { ret 0x0000; }
+ fn O_WRONLY() -> int { ret 0x0001; }
+ fn O_RDWR() -> int { ret 0x0002; }
+ fn O_APPEND() -> int { ret 0x0400; }
+ fn O_CREAT() -> int { ret 0x0040; }
+ fn O_EXCL() -> int { ret 0x0080; }
+ fn O_TRUNC() -> int { ret 0x0200; }
+ fn O_TEXT() -> int { ret 0x4000; }
+ fn O_BINARY() -> int { ret 0x8000; }
- fn S_IRUSR() -> uint { ret 0x0100u; } // really _S_IREAD in win32
- fn S_IWUSR() -> uint { ret 0x0080u; } // really _S_IWRITE in win32
+ fn S_IRUSR() -> uint { ret 0x0100u; } // really _S_IREAD in win32
+ fn S_IWUSR() -> uint { ret 0x0080u; } // really _S_IWRITE in win32
}
+
+// Local Variables:
+// mode: rust;
+// fill-column: 78;
+// indent-tabs-mode: nil
+// c-basic-offset: 4
+// buffer-file-coding-system: utf-8-unix
+// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
+// End: