aboutsummaryrefslogtreecommitdiffstats
path: root/guts/chroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/chroot.c')
-rw-r--r--guts/chroot.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/guts/chroot.c b/guts/chroot.c
deleted file mode 100644
index c5b6f2f..0000000
--- a/guts/chroot.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Copyright (c) 2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_chroot(const char *path) {
- * int rc = -1;
- */
- pseudo_debug(2, "chroot: %s\n", path);
- if (!pseudo_client_op(OP_CHROOT, 0, -1, -1, path, 0)) {
- pseudo_debug(1, "chroot failed: %s\n", strerror(errno));
- rc = -1;
- } else {
- rc = 0;
- }
-
-/* return rc;
- * }
- */