Subversion Repositories Shiroi

Rev

Rev 9 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9 Rev 12
Line 1... Line 1...
1
/* $Id: math.h 9 2024-08-28 16:35:27Z nishi $ */
1
/* $Id: math.h 12 2024-08-29 04:19:08Z nishi $ */
2
 
2
 
3
#ifndef __MATH_H__
3
#ifndef __MATH_H__
4
#define __MATH_H__
4
#define __MATH_H__
5
 
5
 
6
void math_card(int t, int port);
6
void math_card(int, int);
7
 
7
 
8
long modl(long a, long b);
8
long modl(long, long);
9
long divl(long a, long b);
9
long divl(long, long);
10
long mull(long a, long b);
10
long mull(long, long);
11
 
11
 
12
#endif
12
#endif