summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/_execve.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/_execve.c')
-rw-r--r--cpukit/posix/src/_execve.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/src/_execve.c b/cpukit/posix/src/_execve.c
index da05c4a526..0bd8c2e7d1 100644
--- a/cpukit/posix/src/_execve.c
+++ b/cpukit/posix/src/_execve.c
@@ -19,9 +19,9 @@
#include <rtems/seterr.h>
int _execve(
- const char *path,
- char *const argv[],
- char *const envp[]
+ const char *path __attribute__((unused)),
+ char *const argv[] __attribute__((unused)),
+ char *const envp[] __attribute__((unused))
)
{
rtems_set_errno_and_return_minus_one( ENOSYS );