entered into RCS

This commit is contained in:
Jim Blandy 1991-12-04 22:51:54 +00:00
parent 05a9b0abe7
commit 4bcffd8e3c

View file

@ -9,7 +9,7 @@
#include <stdio.h>
#include <ctype.h>
#include "../src/paths.h" /* For PATH_EXEC. */
#include "../src/paths.h" /* For PATH_DATA. */
#define BUFSIZE 80
#define SEP '\0'
@ -30,9 +30,9 @@ main (argc, argv)
strcpy (file, argv[2]);
else
#ifdef vms
sprintf (file, "%s%s", PATH_EXEC, YOW_FILE);
sprintf (file, "%s%s", PATH_DATA, YOW_FILE);
#else
sprintf (file, "%s/%s", PATH_EXEC, YOW_FILE);
sprintf (file, "%s/%s", PATH_DATA, YOW_FILE);
#endif
if ((fp = fopen(file, "r")) == NULL) {