]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/def.wseg.h
Don't use <sys/cdefs.h> __COPYRIGHT/__RCSID macros for host programs -
[bsdgames-darwin.git] / hack / def.wseg.h
1 /* $NetBSD: def.wseg.h,v 1.4 1997/10/19 16:57:25 christos Exp $ */
2
3 /*
4 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
5 */
6 #ifndef _DEF_WSEG_H_
7 #define _DEF_WSEG_H_
8 #ifndef NOWORM
9 /* worm structure */
10 struct wseg {
11 struct wseg *nseg;
12 xchar wx,wy;
13 unsigned wdispl:1;
14 };
15
16 #define newseg() (struct wseg *) alloc(sizeof(struct wseg))
17 #endif /* NOWORM */
18 #endif /* _DEF_WSEG_H_ */