From: Vinson Lee Date: Sat, 2 Jan 2010 00:25:37 +0000 (-0800) Subject: progs/rbug: s/wait/rbug_wait/ X-Git-Tag: 062012170305~12852^2~1452^2~314 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad9defdd9c5c7a18c833cdacebe012604190f167;p=profile%2Fivi%2Fmesa.git progs/rbug: s/wait/rbug_wait/ wait conflicts with wait in /usr/include/sys/wait.h. --- diff --git a/progs/rbug/simple_server.c b/progs/rbug/simple_server.c index 04380c3..3a842c0 100644 --- a/progs/rbug/simple_server.c +++ b/progs/rbug/simple_server.c @@ -29,7 +29,7 @@ #include "rbug/rbug.h" -static void wait() +static void rbug_wait() { int s = u_socket_listen_on_port(13370); int c = u_socket_accept(s); @@ -57,6 +57,6 @@ static void wait() int main(int argc, char** argv) { - wait(); + rbug_wait(); return 0; }