summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/_execve.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/_execve.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/cpukit/posix/src/_execve.c b/cpukit/posix/src/_execve.c
index 53cb36d736..4da47cfe3c 100644
--- a/cpukit/posix/src/_execve.c
+++ b/cpukit/posix/src/_execve.c
@@ -28,10 +28,13 @@
#include <sys/unistd.h>
int _execve(
- const char *path __attribute__((unused)),
- char *const argv[] __attribute__((unused)),
- char *const envp[] __attribute__((unused))
+ const char *path,
+ char *const argv[],
+ char *const envp[]
)
{
+ (void) path;
+ (void) argv;
+ (void) envp;
rtems_set_errno_and_return_minus_one( ENOSYS );
}