// File: /home/cs255001/demo/C/Multi-file-prog/r2.h

// This #ifndef trick is used to prevent recursive include.....
#ifndef  h_prog2_h
#define  h_prog2_h
       	     
int   f( float x );
float g( int x );
float h( float x ); 	     

#endif
