17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
..
37
38
39
40
41
42
43
44
45
46
47
48
49
50
...
142
143
144
145
146
147
148
149
150
151
152
153
154
|
typedef struct kenv {
kiochan std;
kiochan err;
sz argc; char** argv;
kvar* vars;
} kenv;
/* i'm really sorry okay */
typedef
#if (__STDC_VERSION__ >= 199901L)
_Bool bool;
#endif
enum
#if !(__STDC_VERSION__ >= 199901L)
................................................................................
}
#if !(__STDC_VERSION__ >= 199901L)
bool /* } bool ; */
#endif
;
#ifndef KFclean
# if (__STDC_VERSION__ >= 199901L) ||\
(__cplusplus >= 201103L)
# define KVvm_args __VA_ARGS__
# define KVvm_spec ...
# define KFfeat_variadic_macro
# else
# define KVvm_args K_TEMP_M2QD52
................................................................................
#ifdef __cplusplus
[[noreturn]] void kstop(stat_long code);
#elif __STDC_VERSION__ >= 201103L
_Noreturn void kstop(stat_long code);
#else
void kstop(stat_long code);
#endif
#ifdef __cplusplus
}
#endif
#endif
|
<
>
>
>
>
>
>
>
>
>
>
>
>
>
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
..
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
...
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
typedef struct kenv {
kiochan std;
kiochan err;
sz argc; char** argv;
kvar* vars;
} kenv;
/* i'm really sorry okay */
typedef
#if (__STDC_VERSION__ >= 199901L)
_Bool bool;
#endif
enum
#if !(__STDC_VERSION__ >= 199901L)
................................................................................
}
#if !(__STDC_VERSION__ >= 199901L)
bool /* } bool ; */
#endif
;
#ifndef KFclean
# include <k/internal.egroup.h>
# define Kokay(cond) (((cond) % kglobal_module_offset) == 0)
# if (__STDC_VERSION__ >= 199901L) ||\
(__cplusplus >= 201103L)
# define KVvm_args __VA_ARGS__
# define KVvm_spec ...
# define KFfeat_variadic_macro
# else
# define KVvm_args K_TEMP_M2QD52
................................................................................
#ifdef __cplusplus
[[noreturn]] void kstop(stat_long code);
#elif __STDC_VERSION__ >= 201103L
_Noreturn void kstop(stat_long code);
#else
void kstop(stat_long code);
#endif
typedef u16 kcond;
/* this will probably not need to be altered,
* as libk sports a modest number of modules,
* and there are few enough error conditions
* in each that 16-bit address space should
* be more than enough for the foreseeable
* future. however if that changes, altering
* the definition here will effect all the
* necessary changes throughout the library */
bool kokay(kcond);
#ifdef __cplusplus
}
#endif
#endif
|