diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-21 14:28:40 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-22 15:14:12 +0200 |
commit | 3d64031fa7a80ac4ae3fd09a5939196268b92f81 (patch) | |
tree | cf6006f0a3ed771c382e53016978241be02506d0 /lib/easy.c | |
parent | 5a654a0a6990211ee63c55d6a5e0333ad087f133 (diff) | |
download | curl-3d64031fa7a80ac4ae3fd09a5939196268b92f81.tar.gz |
symbian: drop support
The OS is deprecated. I see no traces of anyone having actually built
curl for Symbian after 2012.
The public headers are unmodified.
Closes #5989
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/easy.c b/lib/easy.c index 87f9b0d99..453859d44 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -106,7 +106,6 @@ static long init_flags; # pragma warning(disable:4232) /* MSVC extension, dllimport identity */ #endif -#ifndef __SYMBIAN32__ /* * If a memory-using function (like curl_getenv) is used before * curl_global_init() is called, we need to have these pointers set already. @@ -119,17 +118,6 @@ curl_calloc_callback Curl_ccalloc = (curl_calloc_callback)calloc; #if defined(WIN32) && defined(UNICODE) curl_wcsdup_callback Curl_cwcsdup = (curl_wcsdup_callback)_wcsdup; #endif -#else -/* - * Symbian OS doesn't support initialization to code in writable static data. - * Initialization will occur in the curl_global_init() call. - */ -curl_malloc_callback Curl_cmalloc; -curl_free_callback Curl_cfree; -curl_realloc_callback Curl_crealloc; -curl_strdup_callback Curl_cstrdup; -curl_calloc_callback Curl_ccalloc; -#endif #if defined(_MSC_VER) && defined(_DLL) && !defined(__POCC__) # pragma warning(default:4232) /* MSVC extension, dllimport identity */ |