revert between 56095 -> 55830 in arch
[AROS.git] / arch / all-mingw32 / bsdsocket / send.c
blob4cdfb173512777f3ed7aa5d76965453672f7037f
1 /*
2 Copyright © 2000-2010, 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_LH4(int, send,
17 /* SYNOPSIS */
18 AROS_LHA(int, s, D0),
19 AROS_LHA(const void *, msg, A0),
20 AROS_LHA(int, len, D1),
21 AROS_LHA(int, flags, D2),
23 /* LOCATION */
24 struct Library *, SocketBase, 11, BSDSocket)
26 /* FUNCTION
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 HISTORY
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
48 aros_print_not_implemented ("send");
49 #warning TODO: Write BSDSocket/send
51 return 0;
53 AROS_LIBFUNC_EXIT
55 } /* send */