/**** File: new_header2.h 
   
   This is another simple header file.
   It includes the file new_header.h
   It contains one function prototype.
*/

#ifndef _new_header2_h
#define _new_header2_h

#include "new_header.h"

int diff(int, int) ;

#endif
/**** End of file: new_header2.h */
