linux_module_learn/parametermodule/calculation.h

9 lines
131 B
C

#ifndef __CALCULATION_H__
#define __CALCULATION_H__
extern int itype;
int my_add(int a, int b);
int my_sub(int a, int b);
#endif