added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / bsdsocket / bind.c
blob61b9063783b54e2b0f688d8dc771b4b109fd6a11
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
9 #include "bsdsocket_intern.h"
11 /*****************************************************************************
13 NAME */
15 AROS_LH3(int, bind,
17 /* SYNOPSIS */
18 AROS_LHA(int, s, D0),
19 AROS_LHA(struct sockaddr *, name, A0),
20 AROS_LHA(int, namelen, D1),
22 /* LOCATION */
23 struct Library *, SocketBase, 6, BSDSocket)
25 /* FUNCTION
27 INPUTS
29 RESULT
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
39 INTERNALS
41 HISTORY
43 *****************************************************************************/
45 AROS_LIBFUNC_INIT
47 aros_print_not_implemented ("bind");
48 #warning TODO: Write BSDSocket/bind
50 return NULL;
52 AROS_LIBFUNC_EXIT
54 } /* bind */