Some parts of gcc fail with the direct include of sys/inttypes.h, so

fall back to using sys/types.h like stdlib.h does.
This commit is contained in:
joerg 2009-07-21 16:27:54 +00:00
parent 9a4b5deb76
commit ebf8c87cf8

View File

@ -1,4 +1,4 @@
/* $NetBSD: strings.h,v 1.15 2009/07/21 14:55:33 joerg Exp $ */
/* $NetBSD: strings.h,v 1.16 2009/07/21 16:27:54 joerg Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@ -46,7 +46,7 @@ typedef _BSD_SIZE_T_ size_t;
#include <sys/cdefs.h>
#include <sys/inttypes.h>
#include <sys/types.h>
__BEGIN_DECLS
int bcmp(const void *, const void *, size_t);