X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=tests%2Ftimeval-test.c;h=56b0a34838e7d53e6f2c67de0bafe1a8687cf7ae;hb=f45e842fc7382f6dc3618de2e35ee04383e32153;hp=461b97f54ac929bd5982a492ce50c54f3af6f12e;hpb=5133886fe11d7650bc89b46746731ca2eab2185d;p=catta diff --git a/tests/timeval-test.c b/tests/timeval-test.c index 461b97f..56b0a34 100644 --- a/tests/timeval-test.c +++ b/tests/timeval-test.c @@ -1,18 +1,18 @@ /*** - This file is part of avahi. + This file is part of catta. - avahi is free software; you can redistribute it and/or modify it + catta is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. - avahi is distributed in the hope that it will be useful, but WITHOUT + catta is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with avahi; if not, write to the Free Software + License along with catta; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ***/ @@ -23,21 +23,21 @@ #include -#include -#include +#include +#include -int main(AVAHI_GCC_UNUSED int argc, AVAHI_GCC_UNUSED char *argv[]) { +int main(CATTA_GCC_UNUSED int argc, CATTA_GCC_UNUSED char *argv[]) { struct timeval a = { 5, 5 }, b; b = a; printf("%li.%li\n", a.tv_sec, a.tv_usec); - avahi_timeval_add(&a, -50); + catta_timeval_add(&a, -50); printf("%li.%li\n", a.tv_sec, a.tv_usec); - printf("%lli\n", (long long) avahi_timeval_diff(&a, &b)); + printf("%li\n", (long) catta_timeval_diff(&a, &b)); return 0; }