summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/__socketcall.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/__socketcall.c')
-rw-r--r--libc/sysdeps/linux/common/__socketcall.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/__socketcall.c b/libc/sysdeps/linux/common/__socketcall.c
new file mode 100644
index 000000000..e8e8ee0ee
--- /dev/null
+++ b/libc/sysdeps/linux/common/__socketcall.c
@@ -0,0 +1,14 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * __socketcall() 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_socketcall
+#define __NR___socketcall __NR_socketcall
+_syscall2(int, __socketcall, int, call, unsigned long *, args);
+#endif