summaryrefslogtreecommitdiffstats
path: root/avahi-common/timeval-test.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-08-11 23:45:42 +0000
committerLennart Poettering <lennart@poettering.net>2005-08-11 23:45:42 +0000
commite63a65b3955b173a3e8d6b78c6377a518a9922d6 (patch)
tree9665358bbdd3c228cfeae6b3cbe27e29ac53e506 /avahi-common/timeval-test.c
parentc3d36ee186b5fb24480590080215f7e14ee0f6a6 (diff)
* drop glib from avahi-common
* add new module with avahi_malloc() and friends git-svn-id: file:///home/lennart/svn/public/avahi/trunk@298 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-common/timeval-test.c')
-rw-r--r--avahi-common/timeval-test.c34
1 files changed, 30 insertions, 4 deletions
diff --git a/avahi-common/timeval-test.c b/avahi-common/timeval-test.c
index a0392eb..6f44034 100644
--- a/avahi-common/timeval-test.c
+++ b/avahi-common/timeval-test.c
@@ -1,15 +1,41 @@
+/* $Id$ */
+
+/***
+ This file is part of avahi.
+
+ avahi 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
+ 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
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+ USA.
+***/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdio.h>
#include "util.h"
int main(int argc, char *argv[]) {
- GTimeVal a = { 5, 5 }, b;
+ struct timeval a = { 5, 5 }, b;
b = a;
- g_message("%li.%li", a.tv_sec, a.tv_usec);
+ printf("%li.%li\n", a.tv_sec, a.tv_usec);
avahi_timeval_add(&a, -50);
- g_message("%li.%li", a.tv_sec, a.tv_usec);
+ printf("%li.%li\n", a.tv_sec, a.tv_usec);
- g_message("%lli", avahi_timeval_diff(&a, &b));
+ printf("%lli\n", avahi_timeval_diff(&a, &b));
}