X-Git-Url: http://git.meshlink.io/?p=catta;a=blobdiff_plain;f=tests%2Ftimeval-test.c;h=75f50d4e3a77db81e4bfadc6b5a8234e3ed40507;hp=461b97f54ac929bd5982a492ce50c54f3af6f12e;hb=2c550daf4ac6a6aab7f21047c037b4dd53c57fa6;hpb=37d19f15523b6fe4d1fef2329abe421221b3d4b3 diff --git a/tests/timeval-test.c b/tests/timeval-test.c index 461b97f..75f50d4 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("%lli\n", (long long) catta_timeval_diff(&a, &b)); return 0; }