2 Copyright © 2012-2013, The AROS Development Team. All rights reserved.
5 This file defines the private part of StdCBase.
6 This should only be used internally in stdc.library code so
7 changes can be made to this structure without breaking backwards
10 #ifndef __STDC_INTBASE_H
11 #define __STDC_INTBASE_H
13 #include <libraries/stdc.h>
14 #include <devices/timer.h>
18 #include <aros/types/clock_t.h>
19 /* Some structs that are defined privately */
20 struct signal_func_data
;
25 struct StdCBase StdCBase
;
32 unsigned int srand_seed
;
34 /* time.h and it's functions */
35 struct timerequest timereq
;
36 struct MsgPort timeport
;
41 /* __stdc_startup.c */
42 int *startup_errorptr
;
46 struct MinList atexit_list
;
49 struct signal_func_data
*sigfunc_array
;
58 /* Make a distinction between exit() and abort() */
59 #define ABNORMAL_EXIT 0x00000001
61 #endif //__STDC_INTBASE_H