1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Description: Add support for HDF5 1.10.
Author: Gilles Filippini <pini@debian.org>
Forwarded: https://sourceforge.net/p/pdl/patches/83/
--- a/hdf5.pd
+++ b/hdf5.pd
@@ -1624,7 +1624,7 @@ char *s;
return -1;
}
-double
+hid_t
constant(name, arg)
char *name;
int arg;
@@ -2507,7 +2507,7 @@ EOXS
pp_addxs('',<<'EOXS');
-double
+hid_t
constant(name,arg)
char * name
int arg
@@ -2739,7 +2739,7 @@ OUTPUT:
# Sub to add the H5T_VARIABLE constant
# This is added manually here, rather than regenerate the constant function above
-size_t
+hid_t
H5T_VARIABLE()
CODE:
RETVAL = H5T_VARIABLE;
|