Browse Source

Fix antithread example compile.

Rusty Russell 17 years ago
parent
commit
9626551dcc
1 changed files with 3 additions and 4 deletions
  1. 3 4
      ccan/antithread/examples/dns_lookup.c

+ 3 - 4
ccan/antithread/examples/dns_lookup.c

@@ -1,8 +1,7 @@
 /* Async DNS lookup.  Shows passing complex data through pool. */
 /* Async DNS lookup.  Shows passing complex data through pool. */
-#include "ccan/antithread/antithread.h"
-#include "ccan/string/string.h"
-#include "ccan/talloc/talloc.h"
-#include "md5_finder.h"
+#include <ccan/antithread/antithread.h>
+#include <ccan/str/str.h>
+#include <ccan/talloc/talloc.h>
 #include <err.h>
 #include <err.h>
 #include <sys/select.h>
 #include <sys/select.h>
 #include <stdio.h>
 #include <stdio.h>