Decoupling Architectural-specific Code (#35)
[lunaix-os.git] / lunaix-os / arch / generic / includes / sys / muldiv64.h
1 #ifndef __LUNAIX_ARCH_MULDIV64_H
2 #define __LUNAIX_ARCH_MULDIV64_H
3
4
5 #include <lunaix/spike.h>
6 #include <lunaix/types.h>
7
8 u64_t
9 udiv64(u64_t n, unsigned int base);
10
11 unsigned int
12 umod64(u64_t n, unsigned int base);
13
14
15 #endif /* __LUNAIX_ARCH_MULDIV64_H */