revert between 56095 -> 55830 in arch
[AROS.git] / arch / all-mingw32 / bsdsocket / gethostbyaddr.c
blob8c5515553d0be86c09480698b7b081b503e5cbb7
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(struct hostent *, gethostbyaddr,
17 /* SYNOPSIS */
18 AROS_LHA(char *, addr, A0),
19 AROS_LHA(int, len, D0),
20 AROS_LHA(int, type, D1),
22 /* LOCATION */
23 struct Library *, SocketBase, 36, 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 ("gethostbyaddr");
48 #warning TODO: Write BSDSocket/gethostbyaddr
50 return NULL;
52 AROS_LIBFUNC_EXIT
54 } /* gethostbyaddr */