diff options
author | Richard Lowe <richlowe@richlowe.net> | 2011-05-15 07:27:11 +0100 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2011-07-01 16:40:30 -0400 |
commit | 138eb0097904d9cbbd4bbeb443067df14fa881cc (patch) | |
tree | c17f2c80eee43805bcd4730062cb857b91e5684a /usr/src/tools/ctf/common/utils.h | |
parent | cb2df8815fd80018d65e08f25ae5614934a3d8b3 (diff) | |
download | illumos-joyent-138eb0097904d9cbbd4bbeb443067df14fa881cc.tar.gz |
[HACK] ctf: Temporarily workaround GCC 4 stdarg change
CTF tools include /usr/include first by necessity since they run on the
build machine, but we need a hack to bootstrap builds on systems without a
fixed va_impl.h.
Diffstat (limited to 'usr/src/tools/ctf/common/utils.h')
-rw-r--r-- | usr/src/tools/ctf/common/utils.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr/src/tools/ctf/common/utils.h b/usr/src/tools/ctf/common/utils.h index 9b07361a53..4ae2dd0917 100644 --- a/usr/src/tools/ctf/common/utils.h +++ b/usr/src/tools/ctf/common/utils.h @@ -27,9 +27,8 @@ #ifndef _UTILS_H #define _UTILS_H -#pragma ident "%Z%%M% %I% %E% SMI" - #include <stdarg.h> +#include <ctf_headers.h> #ifdef __cplusplus extern "C" { |