New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / workbench / libs / bsdsocket / gethostname.c
blob3fe4e4621d39235ed8ac4344cd19e92be7d267c3
1 /*
2 Copyright © 1995-2001, 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_LH2(int, gethostname,
17 /* SYNOPSIS */
18 AROS_LHA(char *, name, A0),
19 AROS_LHA(int, namelen, D0),
21 /* LOCATION */
22 struct Library *, SocketBase, 47, BSDSocket)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 HISTORY
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
45 AROS_LIBBASE_EXT_DECL(struct Library *,SocketBase)
47 aros_print_not_implemented ("gethostname");
48 #warning TODO: Write BSDSocket/gethostname
50 return NULL;
52 AROS_LIBFUNC_EXIT
54 } /* gethostname */