| 778 | |
| 779 | #if defined(CROSS_TO_AMIGA) |
| 780 | void msmsg |
| 781 | VA_DECL(const char *, fmt) |
| 782 | { |
| 783 | VA_START(fmt); |
| 784 | VA_INIT(fmt, const char *); |
| 785 | Vprintf(fmt, VA_ARGS); |
| 786 | flushout(); |
| 787 | VA_END(); |
| 788 | return; |
| 789 | } |
| 790 | |
| 791 | unsigned long |
| 792 | sys_random_seed(void) |
nothing calls this directly
no test coverage detected