Fixed up Makefile for distclean
[fw/sdcc] / src / SDCCset.h
index f5179baae9c8b7a7fa7b1bb6151d0f8953a9defd..533074b79f8aa1642e3ac20a16d1350e3d44cebf 100644 (file)
@@ -60,7 +60,8 @@ void *getSet (set **);
 void deleteSetItem (set **, void *);
 void deleteItemIf (set **, int (*cond) (void *, va_list),...);
 int isinSet (set *, void *);
-int isinSetWith (set *, void *, int (*cfunc) (void *, void *));
+typedef int (* insetwithFunc) (void *, void *);
+int isinSetWith (set *, void *, insetwithFunc cfunc);
 int applyToSet (set * list, int (*somefunc) (void *, va_list),...);
 int applyToSetFTrue (set * list, int (*somefunc) (void *, va_list),...);
 set *unionSets (set *, set *, int);