Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!decvax!harpo!seismo!hao!hplabs!sri-unix!mann%Shasta@su-score From: mann%Shasta@su-score@sri-unix.UUCP Newsgroups: net.unix-wizards Subject: C syntax Message-ID: <4353@sri-arpa.UUCP> Date: Thu, 25-Aug-83 01:44:00 EDT Article-I.D.: sri-arpa.4353 Posted: Thu Aug 25 01:44:00 1983 Date-Received: Sun, 21-Aug-83 05:36:15 EDT Lines: 12 From: Tim Mann The proper syntax for a typedef that defines a type "pointer to function returning void" would be typedef void (*P_ADDR)(); The next trick is to figure out how to declare a static array of these pointers, WITHOUT using the above typedef. That one had me tearing my hair until I gave up and used the typedef. --Tim