Differences From Artifact [a7c4eb8f4b]:
- File src/runtime/private.h — part of check-in [547abb97a0] at 2020-06-05 00:29:03 on branch amiga-library — Add missing nullability specifiers (user: js, size: 11191) [annotate] [blame] [check-ins using]
To Artifact [5d82a9b9bc]:
- File
src/runtime/private.h
— part of check-in
[514944f1ea]
at
2020-06-07 16:34:48
on branch amiga-library
— Pass __sF around instead of std* individually
This avoids needing to #undef std{in,out,err} and then providing a new
symbol. (user: js, size: 11131) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
261 262 263 264 265 266 267 | # include <ppcinline/macros.h> # define OBJC_M68K_ARG(type, name, reg) type name = (type)REG_##reg; # else # define OBJC_M68K_ARG(type, name, reg) \ register type reg_##name __asm__(#reg); \ type name = reg_##name; # endif | < < < | 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | # include <ppcinline/macros.h> # define OBJC_M68K_ARG(type, name, reg) type name = (type)REG_##reg; # else # define OBJC_M68K_ARG(type, name, reg) \ register type reg_##name __asm__(#reg); \ type name = reg_##name; # endif #endif extern void objc_register_all_categories(struct objc_symtab *_Nonnull); extern struct objc_category *_Nullable *_Nullable objc_categories_for_class(Class _Nonnull); extern void objc_unregister_all_categories(void); extern void objc_initialize_class(Class _Nonnull); |
︙ | ︙ |