aboutsummaryrefslogtreecommitdiff
path: root/src/tool_operhlp.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-02-02 14:21:53 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-02-03 12:31:16 +0000
commitb811200f647ba465e3e43ab7bdb42aa0fa671c98 (patch)
tree748b7ecdcc479da96979e72c1f2289a9a3893bcc /src/tool_operhlp.c
parentc1daf6c0cd6c8a3f785ffa5cbdd228eb32fbf472 (diff)
tool_operate: Moved main initialisation and cleanup code into tool_main
Diffstat (limited to 'src/tool_operhlp.c')
-rw-r--r--src/tool_operhlp.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/tool_operhlp.c b/src/tool_operhlp.c
index b8c0a2971..a9dab9b80 100644
--- a/src/tool_operhlp.c
+++ b/src/tool_operhlp.c
@@ -193,29 +193,3 @@ CURLcode get_url_file_name(char **filename, const char *url)
return CURLE_OK;
}
-/*
- * This is the main global constructor for the app. Call this before
- * _any_ libcurl usage. If this fails, *NO* libcurl functions may be
- * used, or havoc may be the result.
- */
-CURLcode main_init(void)
-{
-#if defined(__DJGPP__) || defined(__GO32__)
- /* stop stat() wasting time */
- _djstat_flags |= _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
-#endif
-
- return curl_global_init(CURL_GLOBAL_DEFAULT);
-}
-
-/*
- * This is the main global destructor for the app. Call this after
- * _all_ libcurl usage is done.
- */
-void main_free(void)
-{
- curl_global_cleanup();
- convert_cleanup();
- metalink_cleanup();
-}
-