C Code:
  1. #ifndef _readIn_h
  2. #define _readIn_h
  3.  
  4. void readIn(polynomial*, settings*);
  5.  
  6. #endif

polynomial and settings are typedef structs in a header file that readIn.C uses. So i shouldnt have to include the header file in this header file right?

Says it expects ')' before the '*' token... but it is fine and so is all other files... no other errors so i am a little confused!