projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ae37da
)
progs/rbug: s/wait/rbug_wait/
author
Vinson Lee
<vlee@vmware.com>
Sat, 2 Jan 2010 00:25:37 +0000
(16:25 -0800)
committer
Vinson 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
patch
|
blob
|
history
diff --git
a/progs/rbug/simple_server.c
b/progs/rbug/simple_server.c
index 04380c33109692a70b04917730ab604915592942..3a842c06c4e020fe110d0033f7ecae8c3b2da4f7 100644
(file)
--- 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;
}