pike.git
/
src
/
modules
/
Gdbm
/
gdbmmod.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Gdbm/gdbmmod.c:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: gdbmmod.c,v 1.
1
1997/
02
/
11
08
:
00
:
50
hubbe Exp $");
+
RCSID("$Id: gdbmmod.c,v 1.
2
1997/
03
/
17
03
:
06
:
36
hubbe Exp $");
#include "gdbm_machine.h" #include "types.h" #include "threads.h" /* Todo: make sure only one thread accesses the same gdbmmod */ #if defined(HAVE_GDBM_H) && defined(HAVE_LIBGDBM) #include "interpret.h" #include "svalue.h" #include "stralloc.h" #include "array.h" #include "object.h"
-
#include "macros.h"
+
#include "
pike_
macros.h"
#include <gdbm.h> #ifdef _REENTRANT static MUTEX_T gdbm_lock; #endif struct gdbm_glue { GDBM_FILE dbf;