Subversion Repositories Kolibri OS

Rev

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

Rev 3031 Rev 4065
Line 5... Line 5...
5
#include 
5
#include 
Line 6... Line 6...
6
 
6
 
Line 7... Line 7...
7
#if BITS_PER_LONG == 64
7
#if BITS_PER_LONG == 64
-
 
8
 
Line 8... Line 9...
8
 
9
#define div64_long(x,y) div64_s64((x),(y))
9
#define div64_long(x,y) div64_s64((x),(y))
10
#define div64_ul(x, y)   div64_u64((x), (y))
10
 
11
 
11
/**
12
/**
Line 46... Line 47...
46
}
47
}
Line 47... Line 48...
47
 
48
 
Line 48... Line 49...
48
#elif BITS_PER_LONG == 32
49
#elif BITS_PER_LONG == 32
-
 
50
 
Line 49... Line 51...
49
 
51
#define div64_long(x,y) div_s64((x),(y))
50
#define div64_long(x,y) div_s64((x),(y))
52
#define div64_ul(x, y)   div_u64((x), (y))
51
 
53
 
52
#ifndef div_u64_rem
54
#ifndef div_u64_rem