summaryrefslogtreecommitdiff
path: root/system.c
diff options
context:
space:
mode:
authorWichert Akkerman <wichert@deephackmode.org>1999-11-01 19:53:31 +0000
committerWichert Akkerman <wichert@deephackmode.org>1999-11-01 19:53:31 +0000
commit2f473da12babff710bbe37c7f95be01fd00118f9 (patch)
tree02c2a0c2d472bda6609a7dcc518ace8e3dad6402 /system.c
parent505e176ded6376a1283093b334c2c6deb47916e7 (diff)
downloadstrace-2f473da12babff710bbe37c7f95be01fd00118f9.tar.gz
strace-2f473da12babff710bbe37c7f95be01fd00118f9.tar.bz2
strace-2f473da12babff710bbe37c7f95be01fd00118f9.tar.xz
Fix duplicate for sys_create_module
Include linux/in6.h only for Linux MIPS
Diffstat (limited to 'system.c')
-rw-r--r--system.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/system.c b/system.c
index 361e6e4..15ea791 100644
--- a/system.c
+++ b/system.c
@@ -1602,26 +1602,3 @@ struct tcb *tcp;
}
#endif
-#ifdef LINUX
-int
-sys_create_module(tcp)
-struct tcb *tcp;
-{
- if (entering(tcp)) {
- printpath(tcp, tcp->u_arg[0]);
- tprintf(", %lu", tcp->u_arg[1]);
- }
- return RVAL_HEX;
-}
-
-int
-sys_init_module(tcp)
-struct tcb *tcp;
-{
- if (entering(tcp)) {
- printpath(tcp, tcp->u_arg[0]);
- tprintf(", %#lx", tcp->u_arg[1]);
- }
- return 0;
-}
-#endif