386BSD 0.1 development
[unix-history] / usr / othersrc / games / hack / def.gold.h
CommitLineData
7c496796
WJ
1/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2/* def.gold.h - version 1.0.2 */
3
4struct gold {
5 struct gold *ngold;
6 xchar gx,gy;
7 long amount;
8};
9
10extern struct gold *fgold;
11struct gold *g_at();
12#define newgold() (struct gold *) alloc(sizeof(struct gold))