No, just include "myStuffB.h" in "myStuffA.c" right under the include of "myStuffA.h"...

Code:
#ifndef myStuffA_c
#define myStuffA_c

#include "myStuffA.h"
#include "myStuffB.h"

//...

#endif /* myStuffA_c */



That is what I meant with "a .c file includes everything it needs" smile