aboutsummaryrefslogtreecommitdiffstats
path: root/ports/common/guts/execlp.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/common/guts/execlp.c')
-rw-r--r--ports/common/guts/execlp.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/ports/common/guts/execlp.c b/ports/common/guts/execlp.c
new file mode 100644
index 0000000..d357986
--- /dev/null
+++ b/ports/common/guts/execlp.c
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2011 Wind River Systems; see
+ * guts/COPYRIGHT for information.
+ *
+ * int execlp(const char *file, const char *arg, va_list ap)
+ * int rc = -1;
+ */
+
+ rc = real_execlp(file, arg, ap);
+
+/* return rc;
+ * }
+ */