2342a9dc1222b24bf2c83afbb2e40c755690b0a4
[platform/upstream/gdbm.git] / src / gdbmfdesc.c
1 /* gdbfdesc.c - return the file descriptor associated with the database. */
2
3 /* This file is part of GDBM, the GNU data base manager.
4    Copyright (C) 1999, 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
22 #include "gdbmdefs.h"
23
24 /* Return the file number of the DBF file. */
25
26 int
27 gdbm_fdesc(GDBM_FILE dbf)
28 {
29   return (dbf->desc);
30 }