summaryrefslogtreecommitdiff
path: root/ldso/ldso/mips/dl-syscalls.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-08-09 12:20:22 +0000
committerEric Andersen <andersen@codepoet.org>2002-08-09 12:20:22 +0000
commitfa211c565c10f44f85e98046cbc1c9391d53ddcb (patch)
tree6fa90705ae39818c33a0e22f8bf40605685bbe9e /ldso/ldso/mips/dl-syscalls.h
parentb5d62c15c360e17035bc57da77d5271a8784cb7d (diff)
Patch from Stefan Allius, avoid compiler warnings (unused variable)
Diffstat (limited to 'ldso/ldso/mips/dl-syscalls.h')
-rw-r--r--ldso/ldso/mips/dl-syscalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/mips/dl-syscalls.h b/ldso/ldso/mips/dl-syscalls.h
index 793dc9110..e4a1ff9c4 100644
--- a/ldso/ldso/mips/dl-syscalls.h
+++ b/ldso/ldso/mips/dl-syscalls.h
@@ -2,6 +2,6 @@
* setting errno, which is important since we make system calls
* before the errno symbol is dynamicly linked. */
-#define __set_errno(X)
+#define __set_errno(X) {(void)(X);}
#include "sys/syscall.h"