include <stdint.h> for intptr_t; patch from Alexander Bluhm in

tech-toolchain.
This commit is contained in:
apb 2009-03-06 17:03:48 +00:00
parent 5ebdda3e89
commit 8e2705fefd

View File

@ -1,4 +1,4 @@
/* $NetBSD: system.h,v 1.10 2008/09/09 06:32:59 lukem Exp $ */
/* $NetBSD: system.h,v 1.11 2009/03/06 17:03:48 apb Exp $ */
/* system.h: system-dependent declarations; include this first.
Id: system.h,v 1.12 2004/04/26 13:56:57 karl Exp
@ -269,6 +269,10 @@ extern int strcoll ();
/* Some systems don't declare this function in pwd.h. */
struct passwd *getpwnam (const char *name);
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
/* Our library routines not included in any system library. */
extern void *xmalloc (size_t), *xrealloc (void *, size_t);
extern char *xstrdup (const char *);