diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-09 15:13:11 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-09 15:13:11 +0000 |
commit | c67952fc5c3183580f4c3777d6ec2e79cd9e434b (patch) | |
tree | 8144a362414d307a510dd8cba2ca554aefd14859 /lib | |
parent | 7d7c24f9150e78ab0e3e721b142cfe9eb8428260 (diff) |
curl_ prefix modified to Curl_
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getinfo.c b/lib/getinfo.c index 400087183..79deb2f38 100644 --- a/lib/getinfo.c +++ b/lib/getinfo.c @@ -31,7 +31,7 @@ #include <string.h> #include <stdarg.h> -CURLcode curl_getinfo(CURL *curl, CURLINFO info, ...) +CURLcode Curl_getinfo(CURL *curl, CURLINFO info, ...) { va_list arg; long *param_longp; |