1999-06-19
1999-06-19 20:20:47 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
-
e64f5a128442a7dc622922e4fa98459ac84054ed
(11 lines)
(+6/-5)
[
Show
| Annotate
]
Branch: 7.9
tNone added
Rev: src/modules/Gdbm/gdbmmod.c:1.8
Rev: src/modules/Gmp/mpz_glue.c:1.42
Rev: src/operators.c:1.55
Rev: src/security.c:1.15
Rev: src/signal_handler.c:1.140
Rev: src/svalue.h:1.32
4:
||| See the files COPYING and DISCLAIMER for more information.
\*/
#include "global.h"
- RCSID("$Id: gdbmmod.c,v 1.7 1999/02/10 21:47:17 hubbe Exp $");
+ RCSID("$Id: gdbmmod.c,v 1.8 1999/06/19 20:20:38 hubbe Exp $");
#include "gdbm_machine.h"
#include "threads.h"
340: Inside #if defined(HAVE_GDBM_H) && defined(HAVE_LIBGDBM)
ADD_FUNCTION("create",gdbmmod_create,tFunc(tOr(tVoid,tStr) tOr(tVoid,tStr),tVoid),0);
/* function(:void) */
- ADD_FUNCTION("close",gdbmmod_close,tFunc(,tVoid),0);
+ ADD_FUNCTION("close",gdbmmod_close,tFunc(tNone,tVoid),0);
/* function(string,string:int) */
ADD_FUNCTION("store",gdbmmod_store,tFunc(tStr tStr,tInt),0);
/* function(string,string:int) */
352: Inside #if defined(HAVE_GDBM_H) && defined(HAVE_LIBGDBM)
/* function(string:int) */
ADD_FUNCTION("delete",gdbmmod_delete,tFunc(tStr,tInt),0);
/* function(:string) */
- ADD_FUNCTION("firstkey",gdbmmod_firstkey,tFunc(,tStr),0);
+ ADD_FUNCTION("firstkey",gdbmmod_firstkey,tFunc(tNone,tStr),0);
/* function(string:string) */
ADD_FUNCTION("nextkey",gdbmmod_nextkey,tFunc(tStr,tStr),0);
/* function(:int) */
- ADD_FUNCTION("reorganize",gdbmmod_reorganize,tFunc(,tInt),0);
+ ADD_FUNCTION("reorganize",gdbmmod_reorganize,tFunc(tNone,tInt),0);
/* function(:void) */
- ADD_FUNCTION("sync",gdbmmod_sync,tFunc(,tVoid),0);
+ ADD_FUNCTION("sync",gdbmmod_sync,tFunc(tNone,tVoid),0);
set_init_callback(init_gdbm_glue);
set_exit_callback(exit_gdbm_glue);