File:  [DVB] / dietlibc / lib / socket.c
Revision 1.7: download - view: text, annotated - select for diffs
Thu Mar 3 19:03:16 2011 UTC (13 years, 3 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
socket modernization part 2

#include "syscalls.h"
#ifdef __NR_socketcall

#include <linuxnet.h>

extern int socketcall(int callno,long* args);

int __libc_socket(int a, int b, int c);
int __libc_socket(int a, int b, int c) {
  long args[] = { a, b, c };
  return socketcall(SYS_SOCKET, args);
}

int socket(int a,int b,int c) __attribute__((weak,alias("__libc_socket")));

#endif

LinuxTV legacy CVS <linuxtv.org/cvs>