blob: 276e2afb385b2c31d64373b92cbf0986ffbfe824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-ab,v 1.1.1.1 2002/03/06 01:29:20 jonb Exp $
--- an.c.orig Sun Sep 29 20:57:36 1996
+++ an.c
@@ -33,13 +33,7 @@
#define TRUE 1
#define FALSE 0
-#ifndef DEFDICT
-# ifndef unix
-# define DEFDICT "words"
-# else
-# define DEFDICT "/usr/dict/words"
-# endif
-#endif
+#define DEFDICT "/usr/share/dict/words"
#define MAXLINE 512 /* Maximum line length when reading DICTIONARY */
#define MAXWORDS 512 /* Maximum number of words in anagram */
|