Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!hao!oddjob!gargoyle!ihnp4!inuxc!iuvax!ndmath!dean From: dean@ndmath.UUCP (Dean Alvis) Newsgroups: comp.lang.c Subject: pointer declarators Message-ID: <273@ndmath.UUCP> Date: Wed, 19-Aug-87 10:56:12 EDT Article-I.D.: ndmath.273 Posted: Wed Aug 19 10:56:12 1987 Date-Received: Sat, 22-Aug-87 02:46:41 EDT Organization: Math. Dept., Univ. of Notre Dame Lines: 12 i have been reading Harbison & Steele's "C: A Reference Manual", and have a question about the new pointer declarators allowed by dpANSI-C. the syntax is: pointer_declarator: '*' type_specifier_list(opt) declarator (11.3.4, page 256). my question is this: are any type_specifier_lists other than combinations of "const" and "volatile" to be allowed? in other words, is the declaration extern * int ptr_to_int; legal? dean