Overlooked a few target tests that take the address of main().

This commit is contained in:
Kugel Fuhr
2024-09-02 16:55:58 +02:00
parent cd4357057f
commit 79606c4d20
3 changed files with 9 additions and 3 deletions

View File

@@ -159,12 +159,14 @@ static void Pause(void) {
#endif
}
static void Nil() { }
int main(void) {
long n0;
unsigned t;
int c, n1 = 12345, n2, n3;
char s1[80], s2[80];
void *p1 = main, *p2 = main, *p3 = main, *p4 = main;
void *p1 = Nil, *p2 = Nil, *p3 = Nil, *p4 = Nil;
#ifndef USE_STDIO
clrscr();