Home | History | Annotate | Line # | Download | only in hack
def.wseg.h revision 1.4
      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_ */
     19