Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!cornell!rochester!rutgers!att!ulysses!andante!alice!ark From: ark@alice.UUCP (Andrew Koenig) Newsgroups: comp.lang.c Subject: Re: Prototype for Functions pointers in Structures Message-ID: <9176@alice.UUCP> Date: 10 Apr 89 21:09:12 GMT References: <8400@xanth.cs.odu.edu> Distribution: na Organization: AT&T Bell Laboratories, Liberty Corner NJ Lines: 17 In article <8400@xanth.cs.odu.edu>, byrum@cs.odu.edu (Terry Franklin Byrum) writes: > struct fns{ > int foo; > int (*fnsptr)(); > }fns; > How about this: struct fns { int foo; int (*fnsptr)(void); } fns; -- --Andrew Koenig ark@europa.att.com