diff options
| author | chris <chris@NetBSD.org> | 2002-11-19 23:15:59 +0000 |
|---|---|---|
| committer | chris <chris@NetBSD.org> | 2002-11-19 23:15:59 +0000 |
| commit | e1f2f4db9e83ec751f82cbd3dccc1bb830f28c0a (patch) | |
| tree | b84de87517d7c7db24a37b7b2b14bd49c226c599 /distrib/utils/libhack | |
| parent | 733d2a038ff812557ea2fb301cc7e4efa9e6aad5 (diff) | |
As sys/locale.h no longer includes some extraneous headers, localeconv.c
needs to include limits.h itself.
Diffstat (limited to 'distrib/utils/libhack')
| -rw-r--r-- | distrib/utils/libhack/localeconv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distrib/utils/libhack/localeconv.c b/distrib/utils/libhack/localeconv.c index a384ff1fa67..41313785ed7 100644 --- a/distrib/utils/libhack/localeconv.c +++ b/distrib/utils/libhack/localeconv.c @@ -1,4 +1,4 @@ -/* $NetBSD: localeconv.c,v 1.1 1999/05/19 03:53:58 gwr Exp $ */ +/* $NetBSD: localeconv.c,v 1.2 2002/11/19 23:15:59 chris Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. @@ -8,6 +8,7 @@ #include <sys/cdefs.h> #include <sys/localedef.h> #include <locale.h> +#include <limits.h> /* * The localeconv() function constructs a struct lconv from the current |
