xref: /original-bsd/old/pcc/lint/llibs/llib-ldbm (revision e59fb703)
1/*	@(#)llib-ldbm	1.1 (Berkeley) 03/13/86 */
2
3/* LINTLIBRARY */
4
5#include <dbm.h>
6
7int	dbminit(file) char *file; { return 0; }
8datum	fetch(key) datum key; { return key; }
9int	store(key, content) datum key, content; { return 0; }
10int	delete(key) datum key; { return 0; }
11datum	firstkey() { datum item; return item; }
12datum	nextkey(key) datum key; { return key; }
13