/* * ===================================================================================== * * Filename: B.h * * Description: * * Version: 1.0 * Created: 03/02/24 10:49:56 AM IST * Revision: none * Compiler: gcc * * Author: YOUR NAME (), * Organization: * * ===================================================================================== */ #ifndef __B__ #define __B__ #include "A.h" #define min(a,b) (a > b? b:a ) int multiply(int a,int b) #endif