Surround prototypes with __BEGIN_DECLS / __END_DECLS.

PR:		misc/40399
MFC after:	3 days
This commit is contained in:
Dag-Erling Smørgrav 2002-07-22 16:11:39 +00:00
parent 506c29ecf3
commit 190c185e22
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100510

View File

@ -86,6 +86,8 @@ struct url_ent {
#define FETCH_URL 18
#define FETCH_VERBOSE 19
__BEGIN_DECLS
/* FILE-specific functions */
FILE *fetchXGetFile(struct url *, struct url_stat *, const char *);
FILE *fetchGetFile(struct url *, const char *);
@ -125,6 +127,8 @@ struct url *fetchMakeURL(const char *, const char *, int,
struct url *fetchParseURL(const char *);
void fetchFreeURL(struct url *);
__END_DECLS
/* Authentication */
typedef int (*auth_t)(struct url *);
extern auth_t fetchAuthMethod;