From 6073bd61fc1af60a90b71150911a76787e031355 Mon Sep 17 00:00:00 2001 From: Jeffrey Hutzelman Date: Wed, 3 Apr 2013 17:51:41 -0400 Subject: Fix prototype and style issues in test_server --- server/test_server.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/server/test_server.c b/server/test_server.c index f613b6f..b9b0277 100644 --- a/server/test_server.c +++ b/server/test_server.c @@ -47,9 +47,10 @@ extern Location *locations; int failures = 0; -void test_uloc(); +void test_uloc(void); -main() { +int main(int argc, char **argv) +{ puts("Zephyr server testing"); puts(""); @@ -59,7 +60,8 @@ main() { } void -test_uloc() { +test_uloc(void) +{ ZNotice_t z1, z2, z0, z4; String *s1, *s2, *s0, *s4; struct sockaddr_in who1, who2, who3, who0, who4; -- cgit v1.2.3