From: "Lars O. Hansen" Newsgroups: comp.os.msdos.djgpp Subject: dynamic gotos possible with djgpp? Date: Sat, 21 Dec 2002 15:34:14 +0100 Organization: 1&1 Internet AG Lines: 10 Message-ID: NNTP-Posting-Host: p50838225.dip0.t-ipconnect.de X-Trace: news.online.de 1040481251 32179 80.131.130.37 (21 Dec 2002 14:34:11 GMT) X-Complaints-To: abuse AT online DOT de NNTP-Posting-Date: 21 Dec 2002 14:34:11 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com void *x; /* or long *x as addresses are just integers (but may conflict with C type checking) */ x=label1; /* label1 a label like a label for static gotos */ goto x; possible?