linux/arch/metag/include/asm/div64.h
<<
>>
Prefs
   1#ifndef __ASM_DIV64_H__
   2#define __ASM_DIV64_H__
   3
   4#include <asm-generic/div64.h>
   5
   6extern u64 div_u64(u64 dividend, u64 divisor);
   7extern s64 div_s64(s64 dividend, s64 divisor);
   8
   9#define div_u64 div_u64
  10#define div_s64 div_s64
  11
  12#endif
  13