[project @ 2004-03-22 00:38:08 by bursa]

Add a fetch_mimetype() for the debug build.

svn path=/import/netsurf/; revision=652
This commit is contained in:
James Bursa 2004-03-22 00:38:08 +00:00
parent 85e6f03a92
commit 6a02385c1c

View File

@ -24,3 +24,8 @@ const char *fetch_filetype(const char *unix_path)
return "text/html";
}
char *fetch_mimetype(const char *ro_path)
{
return strdup("text/plain");
}