@@ -119,16 +119,16 @@ extern SC_EXPRESS_EXPORT struct freelist_head WHERE_fl;
119119/* macro function definitions */
120120/******************************/
121121
122- #define ALG_new () (struct Algorithm *)MEM_new (&ALG_fl);
123- #define ALG_destroy (x ) MEM_destroy (&ALG_fl,(Freelist *)x)
124- #define FUNC_new () (struct Function_ *)MEM_new (&FUNC_fl)
125- #define FUNC_destroy (x ) MEM_destroy (&FUNC_fl,(Freelist *)x)
126- #define RULE_new () (struct Rule_ *)MEM_new (&RULE_fl)
127- #define RULE_destroy (x ) MEM_destroy (&RULE_fl,(Freelist *)x)
128- #define PROC_new () (struct Procedure_ *)MEM_new (&PROC_fl)
129- #define PROC_destroy (x ) MEM_destroy (&PROC_fl,(Freelist *)x)
130- #define WHERE_new () (struct Where_ *)MEM_new (&WHERE_fl)
131- #define WHERE_destroy (x ) MEM_destroy (&WHERE_fl,(Freelist *)x)
122+ #define ALG_new () (struct Algorithm *)ALLOC_new (&ALG_fl);
123+ #define ALG_destroy (x ) ALLOC_destroy (&ALG_fl,(Freelist *)x)
124+ #define FUNC_new () (struct Function_ *)ALLOC_new (&FUNC_fl)
125+ #define FUNC_destroy (x ) ALLOC_destroy (&FUNC_fl,(Freelist *)x)
126+ #define RULE_new () (struct Rule_ *)ALLOC_new (&RULE_fl)
127+ #define RULE_destroy (x ) ALLOC_destroy (&RULE_fl,(Freelist *)x)
128+ #define PROC_new () (struct Procedure_ *)ALLOC_new (&PROC_fl)
129+ #define PROC_destroy (x ) ALLOC_destroy (&PROC_fl,(Freelist *)x)
130+ #define WHERE_new () (struct Where_ *)ALLOC_new (&WHERE_fl)
131+ #define WHERE_destroy (x ) ALLOC_destroy (&WHERE_fl,(Freelist *)x)
132132
133133#define ALGput_name (algorithm , name ) SCOPEput_name(algorithm,name)
134134#define ALGget_name (algorithm ) SCOPEget_name(algorithm)
0 commit comments