Explicitly include <stdint.h> for uintmax_t; from Eitan Adler.

This commit is contained in:
kleink 2013-11-20 17:19:14 +00:00
parent 3649cbb139
commit 7f9d164c04

View File

@ -1,4 +1,4 @@
/* $NetBSD: regular.c,v 1.23 2011/11/28 10:10:10 wiz Exp $ */
/* $NetBSD: regular.c,v 1.24 2013/11/20 17:19:14 kleink Exp $ */
/*-
* Copyright (c) 1991, 1993, 1994
@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)regular.c 8.3 (Berkeley) 4/2/94";
#else
__RCSID("$NetBSD: regular.c,v 1.23 2011/11/28 10:10:10 wiz Exp $");
__RCSID("$NetBSD: regular.c,v 1.24 2013/11/20 17:19:14 kleink Exp $");
#endif
#endif /* not lint */
@ -45,6 +45,7 @@ __RCSID("$NetBSD: regular.c,v 1.23 2011/11/28 10:10:10 wiz Exp $");
#include <err.h>
#include <limits.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include "extern.h"