aboutsummaryrefslogtreecommitdiffstats
path: root/guts/getwd.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/getwd.c')
-rw-r--r--guts/getwd.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/guts/getwd.c b/guts/getwd.c
deleted file mode 100644
index 836301e..0000000
--- a/guts/getwd.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Copyright (c) 2008-2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static char *
- * wrap_getwd(char *buf) {
- * char * rc = NULL;
- */
-
- pseudo_debug(3, "getwd (getcwd)\n");
- rc = wrap_getcwd(buf, pseudo_path_max());
- /* because it would violate everything we have ever known about
- * UNIX for these functions to have the same errno semantics,
- * that's why.
- */
- if (rc == NULL && errno == ERANGE )
- errno = ENAMETOOLONG;
-
-/* return rc;
- * }
- */