libedit should check HAVE_STDINT_H (S8)

This commit is contained in:
Nicolas Williams
2013-08-05 19:29:55 -04:00
parent c6bfad4f68
commit d58fb7f867
2 changed files with 5 additions and 0 deletions

View File

@@ -43,7 +43,9 @@
#define LIBEDIT_MAJOR 2
#define LIBEDIT_MINOR 11
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <sys/types.h>
#include <stdio.h>

View File

@@ -39,7 +39,10 @@ __RCSID("$NetBSD: unvis.c,v 1.32 2010/11/27 21:22:11 christos Exp $");
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <assert.h>
#include <ctype.h>