Follow our own style guide.
[AROS.git] / arch / all-mingw32 / bsdsocket / seterrnoptr.c
blobc21e9b4bfe49e9099e0ec89ab1ad14f40513ddc6
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_LH2(void, SetErrnoPtr,
17 /* SYNOPSIS */
18 AROS_LHA(void *, ptr, A0),
19 AROS_LHA(int, size, D0),
21 /* LOCATION */
22 struct TaskBase *, taskBase, 28, 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
46 taskBase->errnoPtr = ptr;
47 taskBase->errnoSize = size;
49 AROS_LIBFUNC_EXIT
50 } /* SetErrnoPtr */