2015-09-29 14:42:40 +00:00
|
|
|
#if defined(__GNUC__) && (__GNUC__ >= 5)
|
|
|
|
|
|
|
|
#include "uint16.h"
|
|
|
|
|
|
|
|
int umult16(uint16 a,uint16 b,uint16* c) { return !__builtin_mul_overflow(a,b,c); }
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2003-08-22 15:03:10 +00:00
|
|
|
#include "safemult.h"
|
|
|
|
|
|
|
|
int umult16(uint16 a,uint16 b,uint16* c) {
|
|
|
|
unsigned long x=(unsigned long)a*b;
|
2003-09-05 21:25:51 +00:00
|
|
|
if (x>0xffff) return 0;
|
2003-08-22 15:03:10 +00:00
|
|
|
*c=x&0xffff;
|
2003-09-05 21:25:51 +00:00
|
|
|
return 1;
|
2003-08-22 15:03:10 +00:00
|
|
|
}
|
2015-09-29 14:42:40 +00:00
|
|
|
|
|
|
|
#endif
|