/* This is the header file */

#ifndef INC_BLAH_H
#define INC_BLAH_H

/* Located in the file blah.c */
extern int blah(int foo);

/* Located in the file bar.c */
extern int bar(int foo);

#endif /* INC_BLAH_H */
