progs/rbug: s/wait/rbug_wait/
authorVinson Lee <vlee@vmware.com>
Sat, 2 Jan 2010 00:25:37 +0000 (16:25 -0800)
committerVinson Lee <vlee@vmware.com>
Sat, 2 Jan 2010 00:25:37 +0000 (16:25 -0800)
wait conflicts with wait in /usr/include/sys/wait.h.

progs/rbug/simple_server.c

index 04380c3..3a842c0 100644 (file)
@@ -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;
 }