/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2006,2007 Oracle. All rights reserved. * * $Id: fclose.c,v 1.3 2007/05/17 15:15:47 bostic Exp $ */ #include "db_config.h" #include "db_int.h" /* * fclose -- * * PUBLIC: #ifndef HAVE_FCLOSE * PUBLIC: int fclose __P((FILE *)); * PUBLIC: #endif */ int fclose(fp) FILE *fp; { /* * Release (close) the file. * * Returns the updated reference count, which is of no use to us. */ (void)IFILE_Release(fp); return (0); }