USB device can now be unbind
[AROS.git] / compiler / stdc / __stdc_geterrnoptr.c
blobea55e6f91593c17231b775a2fcdeef158d015fb2
1 /*
2 Copyright © 2012-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Get pointer to errno variable in stdc.library libbase.
6 This function is in both the static linklib and stdc.library.
7 */
8 #include <libraries/stdc.h>
10 int *__stdc_geterrnoptr(void)
12 return &(__aros_getbase_StdCBase()->_errno);