publish p9dialparse
diff --git a/src/lib9/dial.c b/src/lib9/dial.c
index 99d3799..732cbb6 100644
--- a/src/lib9/dial.c
+++ b/src/lib9/dial.c
@@ -16,8 +16,6 @@
 #include <sys/un.h>
 #include <netdb.h>
 
-
-extern int _p9dialparse(char*, char**, char**, u32int*, int*);
 #undef unix
 
 int
@@ -41,7 +39,7 @@
 	if(buf == nil)
 		return -1;
 
-	if(_p9dialparse(buf, &net, &unix, &host, &port) < 0){
+	if(p9dialparse(buf, &net, &unix, &host, &port) < 0){
 		free(buf);
 		return -1;
 	}