Bug 130825

Summary: gcc 3.[45] with -std=c99, isascii() not declared in ctype.h
Product: [Fedora] Fedora Reporter: John Ellson <john.ellson>
Component: glibcAssignee: Jakub Jelinek <jakub>
Status: CLOSED DUPLICATE QA Contact: Brian Brock <bbrock>
Severity: medium Docs Contact:
Priority: medium    
Version: 3   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-02-21 19:05:15 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 John Ellson 2004-08-24 22:26:13 UTC
Description of problem:
isascii() not declared in ctype.h contrary to man 3 isascii

Version-Release number of selected component (if applicable):
glibc-headers-2.3.3-46
gcc35-3.5.0-0.9
gcc-3.4.1-9

How reproducible:
100%

Steps to Reproduce:
1.

ellson@ontap:~> cat bug.c
#include <ctype.h>
int main() {
        return (isascii(32));
}
ellson@ontap:~> gcc35 -std=c99 bug.c
bug.c: In function `main':
bug.c:3: warning: implicit declaration of function 'isascii'
ellson@ontap:~>

2.
3.
  
Actual results:
warning about implicit declaration

Expected results:
no warning

Additional info:

Comment 1 Jakub Jelinek 2004-08-30 06:36:33 UTC
isascii is SysV, misc or X/Open API.

*** This bug has been marked as a duplicate of 130815 ***

Comment 2 Red Hat Bugzilla 2006-02-21 19:05:15 UTC
Changed to 'CLOSED' state since 'RESOLVED' has been deprecated.