We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ab0a4a commit 936e25bCopy full SHA for 936e25b
1 file changed
tests/unix/ffi_float.py
@@ -26,7 +26,7 @@ def ffi_open(names):
26
print('%.6f' % strtod('1.23', None))
27
28
# test passing double and float args
29
-libm = ffi_open(('libm.so', 'libc.so.0', 'libc.so.6', 'libc.dylib'))
+libm = ffi_open(('libm.so', 'libm.so.6', 'libc.so.0', 'libc.so.6', 'libc.dylib'))
30
tgamma = libm.func('d', 'tgamma', 'd')
31
tgammaf = libm.func('f', 'tgammaf', 'f')
32
for fun in (tgamma, tgammaf):
0 commit comments