ANSI C prototypes

Peter da Silva peter at ficc.ferranti.com
Tue Nov 6 08:51:17 AEST 1990


In article <3933.27353319 at cc.helsinki.fi> jaakola at cc.helsinki.fi writes:
> 	static void auxiliary_func(a) /* private helper-function */
> 	int a;
> 	{
> 		...
> 	}

If you do this:

	static void auxilary_func(int a)
	{
		...
	}

Everything will work fine. You only need declare it once. Just do it right
the first time and you won't have to do it again (my father always used to
tell me that).
-- 
Peter da Silva.   `-_-'
+1 713 274 5180.   'U`
peter at ferranti.com



More information about the Comp.lang.c mailing list