remove declaration of got_fetch_parse_uri()
diff --git a/include/got_fetch.h b/include/got_fetch.h
index 8facb74..49f9fd5 100644
--- a/include/got_fetch.h
+++ b/include/got_fetch.h
@@ -17,17 +17,6 @@
#define GOT_FETCH_DEFAULT_REMOTE_NAME "origin"
/*
- * Attempt to parse a URI into the following parts:
- * A protocol scheme, hostname, port number (as a string), path on server,
- * and a repository name. If the URI lacks some of this information return
- * default values where applicable.
- * The results of this function must be passed to other functions below.
- * The caller should dispose of the returned values with free(3).
- */
-const struct got_error *got_fetch_parse_uri(char **, char **, char **,
- char **, char **, const char *);
-
-/*
* Attempt to open a connection to a server using the provided protocol
* scheme, hostname port number (as a string) and server-side path.
* A verbosity level can be specified; it currently controls the amount