From cfa46d6a380f944fce027f893871944dfb422961 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 5 Feb 1997 11:39:48 +0000 Subject: [PATCH] Add the condition !defined(USG) to the logic to include There is still some debate if this is yet the proper way to handle , but this is certainly closer than what I had to start with. Submitted by: Warner Losh --- handbook/porting.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handbook/porting.sgml b/handbook/porting.sgml index 5fc46ca7c8..4575a6a314 100644 --- a/handbook/porting.sgml +++ b/handbook/porting.sgml @@ -49,7 +49,7 @@ the ports collection. is already included; if not, add the code: -#ifdef (defined(__unix__) || defined(unix)) +#ifdef (defined(__unix__) || defined(unix)) && !defined(USG) #include #endif