linux_module_learn/parametermodule/calculation.h

9 lines
131 B
C
Raw Permalink Normal View History

2023-07-22 13:42:32 +08:00
#ifndef __CALCULATION_H__
#define __CALCULATION_H__
extern int itype;
int my_add(int a, int b);
int my_sub(int a, int b);
#endif