2001-01-23
2001-01-23 22:12:39 by Henrik Grubbström (Grubba) <grubba@grubba.org>
-
4aa1e754b3bdb580666c2847f962b7fa37599169
(5 lines)
(+3/-2)
[
Show
| Annotate
]
Branch: 7.9
create() is no longer static, since the testsuite requires it not to be.
Rev: src/modules/Gdbm/gdbmmod.c:1.14
4:
||| See the files COPYING and DISCLAIMER for more information.
\*/
#include "global.h"
- RCSID("$Id: gdbmmod.c,v 1.13 2001/01/23 13:47:31 grubba Exp $");
+ RCSID("$Id: gdbmmod.c,v 1.14 2001/01/23 22:12:39 grubba Exp $");
#include "gdbm_machine.h"
#include "threads.h"
353: Inside #if defined(HAVE_GDBM_H) && defined(HAVE_LIBGDBM)
/* function(void|string,void|string:void) */
ADD_FUNCTION("create", gdbmmod_create,
- tFunc(tOr(tVoid,tStr) tOr(tVoid,tStr), tVoid), ID_STATIC);
+ tFunc(tOr(tVoid,tStr) tOr(tVoid,tStr), tVoid), 0 /*ID_STATIC*/);
/* function(:void) */
ADD_FUNCTION("close",gdbmmod_close,tFunc(tNone,tVoid),0);