aboutsummaryrefslogtreecommitdiff
path: root/arch/metag/include/asm/div64.h
blob: 0fdd11676212efb572557789d9e1061c2147385a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __ASM_DIV64_H__
#define __ASM_DIV64_H__

#include <asm-generic/div64.h>

extern u64 div_u64(u64 dividend, u64 divisor);
extern s64 div_s64(s64 dividend, s64 divisor);

#define div_u64 div_u64
#define div_s64 div_s64

#endif