X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tests%2Flibtest%2Flib509.c;h=4f3e072aeec004b55c3d0e122901541c0eeacb2c;hb=cfd75dcdb18d0a4291f48020211c65507a97d9eb;hp=a2522eb853e135a6b44b91b8f77f26d23b744fdb;hpb=24b9957402f17c422eeeb3386bf049feeb342e78;p=platform%2Fupstream%2Fcurl.git diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index a2522eb..4f3e072 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2016, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2017, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -23,7 +23,7 @@ /* * This test uses these funny custom memory callbacks for the only purpose - * of verifying that curl_global_init_mem() functionallity is present in + * of verifying that curl_global_init_mem() functionality is present in * libcurl and that it works unconditionally no matter how libcurl is built, * nothing more. * @@ -36,11 +36,11 @@ #include "memdebug.h" */ -int seen_malloc = 0; -int seen_free = 0; -int seen_realloc = 0; -int seen_strdup = 0; -int seen_calloc = 0; +static int seen_malloc = 0; +static int seen_free = 0; +static int seen_realloc = 0; +static int seen_strdup = 0; +static int seen_calloc = 0; void *custom_malloc(size_t size); void custom_free(void *ptr);