1993-08-02 21:16:36 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
|
|
|
|
*
|
1995-03-23 11:28:00 +03:00
|
|
|
* $NetBSD: def.wseg.h,v 1.3 1995/03/23 08:29:42 cgd Exp $
|
1993-08-02 21:16:36 +04:00
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#ifndef NOWORM
|
|
|
|
/* worm structure */
|
|
|
|
struct wseg {
|
|
|
|
struct wseg *nseg;
|
|
|
|
xchar wx,wy;
|
|
|
|
unsigned wdispl:1;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define newseg() (struct wseg *) alloc(sizeof(struct wseg))
|
|
|
|
#endif NOWORM
|