In article <8400 at xanth.cs.odu.edu>, byrum at 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 at europa.att.com