Bug 130815 - gcc 3.[45] with -std=c99, strdup() not declared in string.h
Summary: gcc 3.[45] with -std=c99, strdup() not declared in string.h
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Fedora
Classification: Fedora
Component: glibc
Version: 3
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Jakub Jelinek
QA Contact: Brian Brock
URL:
Whiteboard:
: 130819 130825 130829 (view as bug list)
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2004-08-24 21:54 UTC by John Ellson
Modified: 2007-11-30 22:10 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2004-08-30 06:33:40 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

Description John Ellson 2004-08-24 21:54:42 UTC
Description of problem:
strdup() not declared in string.h contrary to man 3 strdup

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 <string.h>
int main() {
        char *a = "abc";
        char *b = strdup(a);
        return (strcmp(a,b));
}
ellson@ontap:~> gcc35 -std=c99 bug.c
bug.c: In function `main':
bug.c:4: warning: implicit declaration of function 'strdup'
bug.c:4: warning: initialization makes pointer from integer without a cast
ellson@ontap:~>

2.
3.
  
Actual results:
warning about implicit declaration

Expected results:
no warning

Additional info:

Comment 1 Jakub Jelinek 2004-08-30 06:33:40 UTC
strdup is not an ISO C99 function, string.h is a ISO C99 header.
Therefore when requesting strict ISO C99 namespace strdup can't be
visible.
Please RTFM info libc about feature set macros.
Particularly, e.g. gcc -std=c99 -D_POSIX_C_SOURCE=200112L,
-std=c99 -D_GNU_SOURCE (and similarly for other feature sets which include strdup)
will provide a strdup prototype.

Comment 2 Jakub Jelinek 2004-08-30 06:34:59 UTC
*** Bug 130819 has been marked as a duplicate of this bug. ***

Comment 3 Jakub Jelinek 2004-08-30 06:36:40 UTC
*** Bug 130825 has been marked as a duplicate of this bug. ***

Comment 4 Jakub Jelinek 2004-08-30 06:38:00 UTC
*** Bug 130829 has been marked as a duplicate of this bug. ***


Note You need to log in before you can comment on or make changes to this bug.