Bug 4340

Summary: errno.h file corrupted
Product: [Retired] Red Hat Linux Reporter: wcheng
Component: libg++Assignee: David Lawrence <dkl>
Status: CLOSED NOTABUG QA Contact:
Severity: high Docs Contact:
Priority: high    
Version: 6.0CC: rodrigob
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 1999-08-18 18:00:41 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description wcheng 1999-08-03 23:43:09 UTC
Hi there,

When I have both Red Hat Linux/Intel 5.2 and 6.0 installed on
different machine, I noticed
that the file /usr/include/sys/errno.h is corrupted. It contains
only one line inside:
#include <errno.h>.

errno.h should include all the error numbers and its definition.

Wayne

Comment 1 rodrigob 1999-08-18 13:00:59 UTC
As far as I can tell, there is nothing wrong with it. sys/errno.h
includes errno.h, that includes bits/errno.h, which in turn includes
linux/errno.h ... Okey, it's a mess, but you get what you need.
Looks:
/usr/include/sys/errno.h includes
/usr/include/errno.h which includes
/usr/include/bits/errno.h which includes
/usr/include/linux/errno.h which contains the error code numbers.
Best regards.

Comment 2 Preston Brown 1999-08-18 18:00:59 UTC
The second person's response is correct.