summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/delete_module.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/delete_module.c')
-rw-r--r--libc/sysdeps/linux/common/delete_module.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/delete_module.c b/libc/sysdeps/linux/common/delete_module.c
new file mode 100644
index 000000000..bcdb7a811
--- /dev/null
+++ b/libc/sysdeps/linux/common/delete_module.c
@@ -0,0 +1,19 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * delete_module() for uClibc
+ *
+ * Copyright (C) 2000-2004 by Erik Andersen <andersen@codpoet.org>
+ *
+ * GNU Library General Public License (LGPL) version 2 or later.
+ */
+
+#include "syscalls.h"
+# ifdef __NR_delete_module
+_syscall1(int, delete_module, const char *, name);
+# else
+int delete_module(const char *name)
+{
+ __set_errno(ENOSYS);
+ return -1;
+}
+# endif