Pat noted that I neglected to drop the SCCS lines on the files I've been committing, so clean up those and any others I could find where the SCCS line date is out of date.
13 lines
285 B
C
13 lines
285 B
C
/* NetHack 3.5 coord.h $Date$ $Revision$ */
|
|
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef COORD_H
|
|
#define COORD_H
|
|
|
|
typedef struct nhcoord {
|
|
xchar x,y;
|
|
} coord;
|
|
|
|
#endif /* COORD_H */
|