diff options
author | Yang Tse <yangsita@gmail.com> | 2010-01-25 04:36:13 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-01-25 04:36:13 +0000 |
commit | 4bb80cfd75d41edbd0fc352c561d102e16d13201 (patch) | |
tree | 869465087ff08393e9093408a2c1bb046f04ec32 /lib/sendf.h | |
parent | de2cc11a739a3bf599c2542f6d770ccedd0ebe3c (diff) | |
download | curl-4bb80cfd75d41edbd0fc352c561d102e16d13201.tar.gz |
fix compiler warning
Diffstat (limited to 'lib/sendf.h')
-rw-r--r-- | lib/sendf.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/sendf.h b/lib/sendf.h index 2ed975ec7..0614ac7e7 100644 --- a/lib/sendf.h +++ b/lib/sendf.h @@ -1,5 +1,5 @@ -#ifndef __SENDF_H -#define __SENDF_H +#ifndef HEADER_CURL_SENDF_H +#define HEADER_CURL_SENDF_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -55,8 +55,6 @@ void Curl_failf(struct SessionHandle *, const char *fmt, ...); CURLcode Curl_client_write(struct connectdata *conn, int type, char *ptr, size_t len); -CURLcode Curl_rtp_client_write(struct connectdata *conn, char *ptr, size_t len); - /* internal read-function, does plain socket only */ int Curl_read_plain(curl_socket_t sockfd, char *buf, @@ -85,4 +83,4 @@ int Curl_debug(struct SessionHandle *handle, curl_infotype type, struct connectdata *conn); -#endif /* __SENDF_H */ +#endif /* HEADER_CURL_SENDF_H */ |