(diroff, dirch, routech): Declare with array size. Define without.

This requires moving routech[] declaration from map.h to path.h.  Get
rid of s_char.
This commit is contained in:
Markus Armbruster 2005-10-30 16:46:46 +00:00
parent e59f9a43d1
commit ae251d0a58
3 changed files with 8 additions and 9 deletions

View file

@ -34,8 +34,8 @@
#ifndef _PATH_H_
#define _PATH_H_
#include "misc.h" /* s_char coord etc. */
#include "sect.h" /* struct sctstr */
#include "misc.h"
#include "sect.h"
#include "xy.h"
/* direction indices */
@ -52,8 +52,9 @@
#define DIR_LAST 6
extern signed char dirindex['z'-'a'+1];
extern int diroff[][2];
extern s_char dirch[];
extern int diroff[DIR_MAP+1][2];
extern char dirch[DIR_MAP+2];
extern char *routech[DIR_LAST+1][2];
/* src/lib/subs/paths.c */
extern char *getpath(char *, char *, coord, coord, int, int, int);