BPicture: Fix archive constructor.
[haiku.git] / src / kits / package / InitTerminateLibPackage.cpp
blob45b252b802015bcb5b73071d1672b8c35669d1dc
1 /*
2 * Copyright 2013, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Rene Gollent <rene@gollent.com>
7 */
10 #ifndef HAIKU_BOOTSTRAP_BUILD
11 #include <curl/curl.h>
12 #endif
15 extern "C" void
16 initialize_after()
18 #ifndef HAIKU_BOOTSTRAP_BUILD
19 curl_global_init(CURL_GLOBAL_SSL);
20 #endif
24 extern "C" void
25 terminate_after()
27 #ifndef HAIKU_BOOTSTRAP_BUILD
28 curl_global_cleanup();
29 #endif