Differences From Artifact [6240ed4c29]:
- File src/linklib/linklib.m — part of check-in [547e079e08] at 2020-06-20 23:16:45 on branch amiga-library — Add all public constants to linklib (user: js, size: 16727) [annotate] [blame] [check-ins using]
To Artifact [e9e8c52c2c]:
- File
src/linklib/linklib.m
— part of check-in
[9697334084]
at
2020-06-21 02:15:26
on branch amiga-library
— Make of_std{in,out,err} available in Amiga library
This is done by using functions that return a reference to the variable
and defining of_std{in,out,err} to a call into these functions. (user: js, size: 16941) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
393 394 395 396 397 398 399 400 401 402 403 404 405 406 | } size_t of_alignof_type_encoding(const char *type) { return glue_of_alignof_type_encoding(type); } void of_logv(OFConstantString *format, va_list arguments) { glue_of_logv(format, arguments); } | > > > > > > > > > > > > > > > > > > | 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | } size_t of_alignof_type_encoding(const char *type) { return glue_of_alignof_type_encoding(type); } OFStdIOStream ** of_stdin_ref(void) { return glue_of_stdin_ref(); } OFStdIOStream ** of_stdout_ref(void) { return glue_of_stdout_ref(); } OFStdIOStream ** of_stderr_ref(void) { return glue_of_stderr_ref(); } void of_logv(OFConstantString *format, va_list arguments) { glue_of_logv(format, arguments); } |
︙ | ︙ |