]> git.pond.sub.org Git - empserver/blobdiff - src/lib/global/dir.c
(diroff, dirch, routech): Declare with array size. Define without.
[empserver] / src / lib / global / dir.c
index 3c503242d2418514d61d9593cb2e91efa74be838..8f9c53bb85f621a96f923cdede3e97bebf2cacc3 100644 (file)
  *  Known contributors to this file:
  */
 
-#include "misc.h"
+#include "path.h"
 
 /* must agree with DIR_ defines */
-s_char dirch[] = {
+char dirch[] = {
     'h',                       /* stop */
     'u',                       /* up-right */
     'j',                       /* right */
@@ -61,7 +61,7 @@ signed char dirindex[] = {
 };
 
 /* must agree with dirch[] and DIR_ defines */
-s_char *routech[7][2] = {
+char *routech[][2] = {
     {"   ", "$ $"},
     {"  /", "$ /"},
     {"  >", "$ >"},