diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2003-09-05 16:05:21 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2003-09-05 16:05:21 +0000 |
commit | 5c6519491583b4006fd7f195da854f3ba3808a88 (patch) | |
tree | 35e26eca6bbf5d3c8c5859aee033d8b0a9a0b0e6 | |
parent | 8f4b894fbcd6460f49ccdf3c9b0ee0839db5f0d9 (diff) | |
download | src-5c6519491583b4006fd7f195da854f3ba3808a88.tar.gz src-5c6519491583b4006fd7f195da854f3ba3808a88.zip |
#include <runetype.h> directly for the definition of _CACHED_RUNES, needed
by ldef.h, rather than relying on GCC-specific pollution from <ctype.h>.
Noticed by: Stefan Farfeleder
Notes
Notes:
svn path=/head/; revision=119776
-rw-r--r-- | usr.bin/mklocale/lex.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/mklocale/lex.l b/usr.bin/mklocale/lex.l index eeed535db2c6..2b3c81fce152 100644 --- a/usr.bin/mklocale/lex.l +++ b/usr.bin/mklocale/lex.l @@ -45,6 +45,7 @@ static char sccsid[] = "@(#)lex.l 8.1 (Berkeley) 6/6/93"; __FBSDID("$FreeBSD$"); #include <ctype.h> +#include <runetype.h> #include <stdio.h> #include <stdlib.h> |