X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstnmem.c;h=80a2e56d5a005c3de28903e0dacd45a37abc344f;hb=055f23ee3692349a03f681ef1a0d5fd70c0cc770;hp=930d18c83a3bcb71ba55accc74288bf7b92f271b;hpb=8d691989077a0addcbd840d769dce6700f3d9622;p=yaz-moved-to-github.git diff --git a/test/tstnmem.c b/test/tstnmem.c index 930d18c..80a2e56 100644 --- a/test/tstnmem.c +++ b/test/tstnmem.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. - * - * $Id: tstnmem.c,v 1.7 2007-01-03 08:42:16 adam Exp $ */ #if HAVE_CONFIG_H @@ -23,31 +21,29 @@ void tst(void) int j; char *cp; - nmem_init(); n = nmem_create(); YAZ_CHECK(n); for (j = 1; j<500; j++) { - cp = nmem_malloc(n, j); + cp = (char *) nmem_malloc(n, j); YAZ_CHECK(cp); - if (sizeof(long) >= j) + if ((int) sizeof(long) >= j) *(long*) cp = 123L; #if HAVE_LONG_LONG - if (sizeof(long long) >= j) + if ((int) sizeof(long long) >= j) *(long long*) cp = 123L; #endif - if (sizeof(double) >= j) + if ((int) sizeof(double) >= j) *(double*) cp = 12.2; } for (j = 2000; j<20000; j+= 2000) { - cp = nmem_malloc(n, j); + cp = (char *) nmem_malloc(n, j); YAZ_CHECK(cp); } nmem_destroy(n); - nmem_exit(); } int main (int argc, char **argv) @@ -59,6 +55,7 @@ int main (int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab