| To: | Justin Carlson <justinca@cs.cmu.edu> |
|---|---|
| Subject: | Re: Function pointers and #defines |
| From: | Daniel Jacobowitz <dan@debian.org> |
| Date: | Thu, 30 May 2002 15:50:52 -0400 |
| Cc: | linux-mips@oss.sgi.com |
| In-reply-to: | <1022787167.14210.472.camel@ldt-sj3-022.sj.broadcom.com> |
| References: | <1022787167.14210.472.camel@ldt-sj3-022.sj.broadcom.com> |
| Sender: | owner-linux-mips@oss.sgi.com |
| User-agent: | Mutt/1.3.28i |
On Thu, May 30, 2002 at 12:32:47PM -0700, Justin Carlson wrote: > A fair number of places in the headers, we have stuff like this: > > void (*_some_fn)(int arg1, int arg2); > #define some_fn(arg1, arg2) _some_fn(arg1, arg2) > > Why do we do this, as opposed to: > > void (*some_fn)(int arg1, int arg2); > > Both syntaxes result in being able to say > > some_fn(1, 2); > > but the latter is both clearer and shorter. Is there some deep, > mystical C reason that we use the former, or did someone do it that way > a long time ago and no one has changed it? At a guess, this prevents taking the address of the function unintentionally... -- Daniel Jacobowitz Carnegie Mellon University MontaVista Software Debian GNU/Linux Developer |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: Function pointers and #defines, Justin Carlson |
|---|---|
| Next by Date: | Re: cross-compiler for MIPS_RedHat7.1_Release-01.00 on Atlas/4Kc using RH7.3-i386 host, David Christensen |
| Previous by Thread: | Function pointers and #defines, Justin Carlson |
| Next by Thread: | Re: Function pointers and #defines, Justin Carlson |
| Indexes: | [Date] [Thread] [Top] [All Lists] |