mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-19 18:32:24 +03:00
Adding modified Header files
This commit is contained in:
Binary file not shown.
@@ -6,7 +6,7 @@
|
||||
* Description:
|
||||
*
|
||||
* Version: 1.0
|
||||
* Created: 02/02/24 10:15:59 PM IST
|
||||
* Created: 03/02/24 10:48:50 AM IST
|
||||
* Revision: none
|
||||
* Compiler: gcc
|
||||
*
|
||||
@@ -16,6 +16,8 @@
|
||||
* =====================================================================================
|
||||
*/
|
||||
|
||||
|
||||
#define max(a,b) ( a > b ? a : b )
|
||||
int sum(int a,int b);
|
||||
#ifndef __A__
|
||||
#define __A__
|
||||
#define max(a,b) (a > b? a : b)
|
||||
int sum(int a,int b)
|
||||
#endif
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
* Description:
|
||||
*
|
||||
* Version: 1.0
|
||||
* Created: 02/02/24 10:18:06 PM IST
|
||||
* Created: 03/02/24 10:49:56 AM IST
|
||||
* Revision: none
|
||||
* Compiler: gcc
|
||||
*
|
||||
@@ -16,6 +16,9 @@
|
||||
* =====================================================================================
|
||||
*/
|
||||
|
||||
#ifndef __B__
|
||||
#define __B__
|
||||
#include "A.h"
|
||||
#define min(a,b) ( a > b ? b : a )
|
||||
int multiply ( int a , int b );
|
||||
#define min(a,b) (a > b? b:a )
|
||||
int multiply(int a,int b)
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user