From 5afd2c34699c60ba247b1de8ec42efbed1c09e39 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Mon, 28 Sep 2009 07:54:02 -0400 Subject: [PATCH] conditionalize stdint.h inclusion in lwp Irix has no stdint.h; wrap in ifdefs so we don't include when we don't have it. Reviewed-on: http://gerrit.openafs.org/530 Tested-by: Derrick Brashear Reviewed-by: Derrick Brashear --- src/lwp/lwp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lwp/lwp.c b/src/lwp/lwp.c index 035996726..66eb74465 100644 --- a/src/lwp/lwp.c +++ b/src/lwp/lwp.c @@ -20,7 +20,9 @@ #include #include +#ifdef HAVE_STDINT_H #include +#endif #include /* allocate externs here */ -- 2.39.5