Prototype __ashldi3(), __ashrdi3() and __lshrdi3().

This commit is contained in:
Olivier Houchard 2004-05-04 22:15:54 +00:00
parent bf0c356cdf
commit 967f542177
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128935

View File

@ -105,4 +105,8 @@ u_quad_t __umoddi3(u_quad_t a, u_quad_t b);
int __ucmpdi2(u_quad_t a, u_quad_t b);
typedef unsigned int qshift_t;
quad_t __ashldi3(quad_t, qshift_t);
quad_t __ashrdi3(quad_t, qshift_t);
quad_t __lshrdi3(quad_t, qshift_t);
#endif /* _LIBKERN_QUAD_H */