about summary refs log tree commit diff
path: root/src/rt/rust_uv.cpp
diff options
context:
space:
mode:
authorJeff Olson <olson.jeffery@gmail.com>2013-08-19 16:06:31 -0700
committerJeff Olson <olson.jeffery@gmail.com>2013-08-22 16:31:57 -0700
commitf60bd75f4d8b776cf1e777b59d2d2262d03818a7 (patch)
tree21a1f9358cd09b0646a7a8f9635c6b1315b3004e /src/rt/rust_uv.cpp
parente0a80ee332dc347d588bfcea66c11896c04263bb (diff)
downloadrust-f60bd75f4d8b776cf1e777b59d2d2262d03818a7.tar.gz
rust-f60bd75f4d8b776cf1e777b59d2d2262d03818a7.zip
std: remove fcntl const bindings + making valgrind clean w/ no owned vecs
Diffstat (limited to 'src/rt/rust_uv.cpp')
-rw-r--r--src/rt/rust_uv.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/rt/rust_uv.cpp b/src/rt/rust_uv.cpp
index e08b4ac21eb..7ee68ff5304 100644
--- a/src/rt/rust_uv.cpp
+++ b/src/rt/rust_uv.cpp
@@ -538,42 +538,6 @@ rust_uv_fs_req_cleanup(uv_fs_t* req) {
   uv_fs_req_cleanup(req);
 }
 extern "C" int
-rust_uv_get_O_RDONLY() {
-  return O_RDONLY;
-}
-extern "C" int
-rust_uv_get_O_WRONLY() {
-  return O_WRONLY;
-}
-extern "C" int
-rust_uv_get_O_RDWR() {
-  return O_RDWR;
-}
-extern "C" int
-rust_uv_get_O_CREAT() {
-  return O_CREAT;
-}
-extern "C" int
-rust_uv_get_O_TRUNC() {
-  return O_TRUNC;
-}
-extern "C" int
-rust_uv_get_S_IWUSR() {
-  return S_IWUSR;
-}
-extern "C" int
-rust_uv_get_S_IRUSR() {
-  return S_IRUSR;
-}
-extern "C" int
-rust_uv_get_S_IRGRP() {
-  return S_IRGRP;
-}
-extern "C" int
-rust_uv_get_S_IROTH() {
-  return S_IROTH;
-}
-extern "C" int
 rust_uv_get_result_from_fs_req(uv_fs_t* req) {
   return req->result;
 }