aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/renameat.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/renameat.c')
-rw-r--r--ports/unix/guts/renameat.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/ports/unix/guts/renameat.c b/ports/unix/guts/renameat.c
new file mode 100644
index 0000000..c8203b7
--- /dev/null
+++ b/ports/unix/guts/renameat.c
@@ -0,0 +1,15 @@
+/*
+ * Copyright (c) 2008-2010 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * static int
+ * wrap_renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath) {
+ * int rc = -1;
+ */
+
+ pseudo_diag("help! unimplemented renameat [%s -> %s].\n", oldpath, newpath);
+ rc = real_renameat(olddirfd, oldpath, newdirfd, newpath);
+
+/* return rc;
+ * }
+ */