2010-06-23 23:03:09 -05:00
|
|
|
import _str.sbuf;
|
|
|
|
import _vec.vbuf;
|
|
|
|
|
|
|
|
native mod libc = "libc.so.6" {
|
|
|
|
|
2010-09-22 17:44:13 -05:00
|
|
|
fn open(sbuf s, int flags, uint mode) -> int;
|
|
|
|
fn read(int fd, vbuf buf, uint count) -> int;
|
|
|
|
fn write(int fd, vbuf buf, uint count) -> int;
|
|
|
|
fn close(int fd) -> int;
|
|
|
|
|
|
|
|
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 dir;
|
|
|
|
fn opendir(sbuf d) -> dir;
|
|
|
|
fn closedir(dir d) -> int;
|
2011-03-10 08:56:51 -06:00
|
|
|
type dirent;
|
|
|
|
fn readdir(dir d) -> dirent;
|
2010-09-22 17:44:13 -05:00
|
|
|
|
|
|
|
fn getenv(sbuf n) -> sbuf;
|
|
|
|
fn setenv(sbuf n, sbuf v, int overwrite) -> int;
|
|
|
|
fn unsetenv(sbuf n) -> int;
|
2010-06-23 23:03:09 -05:00
|
|
|
}
|
2010-08-04 19:14:11 -05:00
|
|
|
|
|
|
|
mod libc_constants {
|
2010-09-22 17:44:13 -05:00
|
|
|
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 0x0000; } // nonexistent in linux libc
|
|
|
|
fn O_BINARY() -> int { ret 0x0000; } // nonexistent in linux libc
|
|
|
|
|
|
|
|
fn S_IRUSR() -> uint { ret 0x0100u; }
|
|
|
|
fn S_IWUSR() -> uint { ret 0x0080u; }
|
2010-08-04 19:14:11 -05:00
|
|
|
}
|
2010-09-22 17:44:13 -05:00
|
|
|
|
2010-10-22 13:46:33 -05:00
|
|
|
fn exec_suffix() -> str {
|
|
|
|
ret "";
|
|
|
|
}
|
|
|
|
|
2010-10-22 18:15:06 -05:00
|
|
|
fn target_os() -> str {
|
|
|
|
ret "linux";
|
|
|
|
}
|
2010-09-22 17:44:13 -05:00
|
|
|
|
|
|
|
// 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:
|