diff options
Diffstat (limited to 'docs/application/namespace.md')
| -rw-r--r-- | docs/application/namespace.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/application/namespace.md b/docs/application/namespace.md index 3dd6bfa..07af049 100644 --- a/docs/application/namespace.md +++ b/docs/application/namespace.md @@ -25,7 +25,7 @@ typedef struct _kpl_namespace_module { kpl_buffer *module_name, *module_string; kpl_export *exports; kpl_task *task; - _Atomic int32_t children; + atomic_int_least32_t children; } kpl_namespace_module; static kpl_namespace_module *namespace_module_head; @@ -34,7 +34,7 @@ typedef struct _kpl_namespace_string { kpl_buffer *string; kpl_task *task; kpl_type_ptr ast; - _Atomic int32_t children; + atomic_int_least32_t children; } kpl_namespace_string; ``` |
