mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
c8db99d323
GCC had a horrible .gitignore, untracked files were not applied
9 lines
219 B
C
9 lines
219 B
C
#include <isl/union_map_type.h>
|
|
|
|
/* Return the union set that was treated as the union map "umap".
|
|
*/
|
|
static __isl_give isl_union_set *uset_from_umap(__isl_take isl_union_map *umap)
|
|
{
|
|
return (isl_union_set *) umap;
|
|
}
|