1 /* 2 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. 3 * 4 * $Id: def.gold.h,v 1.2 1993/08/02 17:16:45 mycroft Exp $ 5 */ 6 7 struct gold { 8 struct gold *ngold; 9 xchar gx,gy; 10 long amount; 11 }; 12 13 extern struct gold *fgold; 14 struct gold *g_at(); 15 #define newgold() (struct gold *) alloc(sizeof(struct gold)) 16