We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e035475 commit 54717e3Copy full SHA for 54717e3
libdevice/cmath_wrapper.cpp
@@ -16,7 +16,9 @@ DEVICE_EXTERN_C
16
ldiv_t ldiv(long int x, long int y) { return __devicelib_ldiv(x, y); }
17
18
DEVICE_EXTERN_C
19
-lldiv_t lldiv(long long int x, long long int y) { return __devicelib_lldiv(x, y); }
+lldiv_t lldiv(long long int x, long long int y) {
20
+ return __devicelib_lldiv(x, y);
21
+}
22
23
24
float scalbnf(float x, int n) { return __devicelib_scalbnf(x, n); }
0 commit comments