]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/def.gen.h
Use more markup, and bump date for ppt's -d flag.
[bsdgames-darwin.git] / hack / def.gen.h
1 /* $NetBSD: def.gen.h,v 1.4 1997/10/19 16:57:01 christos Exp $ */
2
3 /*
4 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
5 */
6 #ifndef _DEF_GEN_H_
7 #define _DEF_GEN_H_
8 struct gen {
9 struct gen *ngen;
10 xchar gx,gy;
11 unsigned gflag; /* 037: trap type; 040: SEEN flag */
12 /* 0100: ONCE only */
13 #define TRAPTYPE 037
14 #define SEEN 040
15 #define ONCE 0100
16 };
17 extern struct gen *fgold, *ftrap;
18 #define newgen() (struct gen *) alloc(sizeof(struct gen))
19 #endif /* _DEF_GEN_H_ */