Subversion Repositories Kolibri OS

Rev

Rev 8622 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8622 Rev 8629
Line 12... Line 12...
12
#define max(a, b) ((a)>(b) ? (a) : (b))
12
#define max(a, b) ((a)>(b) ? (a) : (b))
Line 13... Line 13...
13
 
13
 
14
extern int  _FUNC(atoi)(const char *s);
14
extern int  _FUNC(atoi)(const char *s);
15
extern long _FUNC(atol)(const char *);
15
extern long _FUNC(atol)(const char *);
16
extern long long _FUNC(atoll)(const char *);
16
extern long long _FUNC(atoll)(const char *);
Line 17... Line 17...
17
//char* itoa)(int n, char* s);
17
extern void _FUNC(itoa)(int n, char* s);
18
 
18
 
19
extern int _FUNC(abs)(int);
19
extern int _FUNC(abs)(int);