Files
nethack/include/coord.h
keni b97d53fb30 cleanup: outdated SCCS lines
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.
2012-01-10 17:47:45 +00:00

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 */