add changelog
[platform/upstream/gdbm.git] / compat / close.c
1 /* close.c - Close the "original" style database. */
2
3 /* This file is part of GDBM, the GNU data base manager.
4    Copyright (C) 1993, 2007, 2011 Free Software Foundation, Inc.
5
6    GDBM is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3, or (at your option)
9    any later version.
10
11    GDBM is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with GDBM. If not, see <http://www.gnu.org/licenses/>.    */
18
19 /* Include system configuration before all else. */
20 #include "autoconf.h"
21 #include "dbm-priv.h"
22
23 /* It's unclear whether dbmclose() is *always* a void function in old
24    C libraries.  We use int, here. */
25
26 int
27 dbmclose ()
28 {
29   if (_gdbm_file != NULL)
30     {
31       dbm_close (_gdbm_file);
32       _gdbm_file = NULL;
33     }
34   return (0);
35 }