Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!cbosgd!ihnp4!houxm!whuxl!whuxlm!akgua!gatech!seismo!brl-adm!brl-smoke!smoke!gwyn@BRL.ARPA From: gwyn@BRL.ARPA Newsgroups: net.lang.c Subject: Re: Address of array Message-ID: <153@brl-smoke.ARPA> Date: Sun, 20-Apr-86 20:19:13 EST Article-I.D.: brl-smok.153 Posted: Sun Apr 20 20:19:13 1986 Date-Received: Wed, 23-Apr-86 21:53:21 EST Sender: news@brl-smoke.ARPA Lines: 6 typedef struct { whatever-you-need } jmp_buf[1]; solves the problem of the way setjmp()'s parameter is used, with completely type-correct implementation (in the "whatever-you-need" part). Too bad setjmp() was defined as taking an array parameter in the first place.