summaryrefslogtreecommitdiff
path: root/bjm.c
diff options
context:
space:
mode:
authorWichert Akkerman <wichert@deephackmode.org>1999-05-09 00:29:58 +0000
committerWichert Akkerman <wichert@deephackmode.org>1999-05-09 00:29:58 +0000
commit2e2553a534f532a1546ea2b2f3dc3cd2276d020d (patch)
tree6cffd996287d564f4365dd0b13e1fd9abe33c186 /bjm.c
parent022c52fda19fa3e92a7000b239214fdd57248a4b (diff)
downloadstrace-2e2553a534f532a1546ea2b2f3dc3cd2276d020d.tar.gz
strace-2e2553a534f532a1546ea2b2f3dc3cd2276d020d.tar.bz2
strace-2e2553a534f532a1546ea2b2f3dc3cd2276d020d.tar.xz
Merged in a bunch of patches that I got as reaction to the 3.99 release.
See the ChangeLog for details
Diffstat (limited to 'bjm.c')
-rw-r--r--bjm.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/bjm.c b/bjm.c
index 2bb91a9..d21ce7c 100644
--- a/bjm.c
+++ b/bjm.c
@@ -1,5 +1,7 @@
#include "defs.h"
+#if defined(LINUX)
+
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/time.h>
@@ -49,13 +51,5 @@ struct tcb *tcp;
return 0;
}
-int
-sys_delete_module(tcp)
-struct tcb *tcp;
-{
+#endif /* LINUX */
- if (entering(tcp)) {
- printstr(tcp, tcp->u_arg[0], -1);
- }
- return 0;
-}