blob: a730f4f25b1343cb34645cdc1cf6f89cfd5f3dfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
typedef struct IPint IPint;
#pragma incomplete IPint
//Keyring_IPint* newIPint(mpint*);
void* newIPint(mpint*);
//mpint* checkIPint(Keyring_IPint*);
mpint* checkIPint(void*);
void freeIPint(Heap*, int);
void ipintsmodinit(void);
extern Type* TIPint;
|