Eliminated global variable current_dataset.
[pspp-builds.git] / src / data / transformations.h
index cc552a103ec44464b8d3d5ec21a162af97c79f9d..79527d862ade78daa0f136a480f78d6f36e1c0f8 100644 (file)
@@ -23,7 +23,7 @@
 #include <stdbool.h>
 #include <stddef.h>
 
-typedef unsigned long casenum_t ;
+typedef unsigned long casenumber ;
 
 /* trns_proc_func return values. */
 enum trns_result 
@@ -37,7 +37,7 @@ enum trns_result
 
 struct ccase;
 typedef void trns_finalize_func (void *);
-typedef int trns_proc_func (void *, struct ccase *, casenum_t);
+typedef int trns_proc_func (void *, struct ccase *, casenumber);
 typedef bool trns_free_func (void *);
 \f
 /* Transformation chains. */