summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/_execve.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-01-02 10:04:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-01-02 10:04:24 +0000
commit92f4671850333cdda195c7c4ad51746c0fa0c3a5 (patch)
tree8b364ed60bbe3fb6ba2e6e0ae8c725a7832fa128 /cpukit/posix/src/_execve.c
parent2009-01-02 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-92f4671850333cdda195c7c4ad51746c0fa0c3a5.tar.bz2
Add __attribute__((unused)) to unused function args.
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 );