aboutsummaryrefslogtreecommitdiff
path: root/softint/softint.h
blob: 69ca31a66838ea15f906a45bb9428c41f68b2d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#ifndef softint_h
#define softint_h

#ifdef __cplusplus
extern "C" {
#endif


/*----------------------------------------------------------------------------
| Integer Operations.
*----------------------------------------------------------------------------*/

long softint_mul( long, long );
long softint_udivrem( long, long, int );


#ifdef __cplusplus
}
#endif

#endif