X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=polyhedron_sample.c;h=a8c340636ca296e332e2be0a4913371ffc313512;hb=2a76a4d88b65873ed5437c8f16f0b1ebd39e4c35;hp=05b343b1c5b37220efab3ee88f6503fd9142f392;hpb=05f3f66572b9aa548e03a39deaa3000f9cef563a;p=platform%2Fupstream%2Fisl.git diff --git a/polyhedron_sample.c b/polyhedron_sample.c index 05b343b..a8c3406 100644 --- a/polyhedron_sample.c +++ b/polyhedron_sample.c @@ -1,7 +1,7 @@ /* * Copyright 2008-2009 Katholieke Universiteit Leuven * - * Use of this software is governed by the GNU LGPLv2.1 license + * Use of this software is governed by the MIT license * * Written by Sven Verdoolaege, K.U.Leuven, Departement * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium @@ -19,7 +19,7 @@ int main(int argc, char **argv) struct isl_vec *sample; isl_printer *p; - bset = isl_basic_set_read_from_file(ctx, stdin, 0); + bset = isl_basic_set_read_from_file(ctx, stdin); sample = isl_basic_set_sample_vec(isl_basic_set_copy(bset)); p = isl_printer_to_file(ctx, stdout); p = isl_printer_print_vec(p, sample);