/[mldonkey]/mldonkey/src/utils/cdk/zlibstubs.c
ViewVC logotype

Diff of /mldonkey/src/utils/cdk/zlibstubs.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by spiralvoice, Sat Jul 23 14:19:48 2005 UTC revision 1.3 by spiralvoice, Mon Aug 1 20:09:13 2005 UTC
# Line 364  value camlzip_bzDecompressEnd(value stre Line 364  value camlzip_bzDecompressEnd(value stre
364  #endif  #endif
365    return Val_unit;    return Val_unit;
366  }  }
367    
368    int camlzip_zlibversion(void)
369    {
370      CAMLparam0 ();
371      CAMLlocal1 (v);
372    #ifdef HAVE_ZLIBVERSION
373      v = copy_string (zlibVersion());
374      CAMLreturn (v);
375    #else
376      failwith("zlibVersion not found");
377    #endif
378    }
379    
380    int camlzip_bzlibversion(void)
381    {
382      CAMLparam0 ();
383      CAMLlocal1 (v);
384    #ifdef HAVE_BZLIBVERSION
385      v = copy_string (BZ2_bzlibVersion());
386      CAMLreturn (v);
387    #else
388      failwith("bzlibVersion not found");
389    #endif
390    }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26