diff options
| author | joerg <joerg@NetBSD.org> | 2009-07-21 16:27:54 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2009-07-21 16:27:54 +0000 |
| commit | ebf8c87cf8470ebce188c48ef63227f7b58d4b8d (patch) | |
| tree | 5655b4ac63f011cfd2ce94d8ff4ea7b1ba30d127 /include | |
| parent | 9a4b5deb763e8f00c8a4abcb3bb0bbfc7e445649 (diff) | |
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.
Diffstat (limited to 'include')
| -rw-r--r-- | include/strings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/strings.h b/include/strings.h index 23e66d8bed1..93a776f7305 100644 --- a/include/strings.h +++ b/include/strings.h @@ -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); |
