X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Ftpath.c;h=e2053218c2764ec955a97f7e912aee233e363c94;hb=ac5f8ad9508f5b3ada38117b0da7ae23c650ab1e;hp=b8f07946a3244d52c339e6b84ddcbbc79d7dc13f;hpb=98f0cc2d7eeed27912edb88bf16512bb622b19ee;p=yaz-moved-to-github.git diff --git a/util/tpath.c b/util/tpath.c index b8f0794..e205321 100644 --- a/util/tpath.c +++ b/util/tpath.c @@ -3,7 +3,7 @@ * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * - * $Id: tpath.c,v 1.6 2002-04-04 20:49:46 adam Exp $ + * $Id: tpath.c,v 1.8 2002-04-05 12:49:13 adam Exp $ */ #if HAVE_CONFIG_H #include @@ -18,11 +18,16 @@ FILE *yaz_path_fopen(const char *path, const char *name, const char *mode) { - return yaz_path_fopen_base (path, name, mode, 0); + return yaz_fopen (path, name, mode, 0); } -FILE *yaz_path_fopen_base(const char *path, const char *name, const char *mode, - const char *base) +int yaz_fclose (FILE *f) +{ + return fclose (f); +} + +FILE *yaz_fopen(const char *path, const char *name, const char *mode, + const char *base) { char spath[1024];