Fixed refer(1) pathname problem.
[unix-history] / usr / src / old / libndbm / dbm.h
CommitLineData
14e82b1d 1/*
59815af2
KB
2 * Copyright (c) 1983 The Regents of the University of California.
3 * All rights reserved.
14e82b1d 4 *
f1855e9f 5 * %sccs.include.redist.c%
59815af2 6 *
d26333ca 7 * @(#)dbm.h 5.5 (Berkeley) %G%
14e82b1d 8 */
8d82c25e 9
14e82b1d
JB
10#ifndef NULL
11/*
12 * this is lunacy, we no longer use it (and never should have
13 * unconditionally defined it), but, this whole file is for
14 * backwards compatability - someone may rely on this.
15 */
8d82c25e 16#define NULL ((char *) 0)
14e82b1d 17#endif
8d82c25e 18
e20c56b2
JK
19/*
20 * Pre-define the page block size to be the old dbm size.
21 */
22
23#define PBLKSIZ 1024
24
d26333ca 25#include "ndbm.h"
8d82c25e
SL
26
27datum fetch();
8d82c25e
SL
28datum firstkey();
29datum nextkey();