Path: utzoo!attcan!uunet!lll-winken!ames!oliveb!apple!rutgers!cmcl2!adm!smoke!gwyn From: gwyn@smoke.BRL.MIL (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: Use of keyword ``auto'' in function prototypes Keywords: auto prototype parameter storage class Message-ID: <9720@smoke.BRL.MIL> Date: 26 Feb 89 02:39:32 GMT References: <8249@paris.ics.uci.edu> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 8 In article <8249@paris.ics.uci.edu> Doug Schmidt writes: > Can someone ``in the know'' please inform me whether ANSI C *forbids* >the appearance of the keyword ``auto'' in function prototypes, i.e.: >int foo (auto int bar); If a parameter declaration includes a storage class specifier, it must be "register". The storage class specifier is ignored if the declaration is not part of the function definition.