Project Home
Project Home
Source Code
Source Code
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
BroadcastCommunity.qnx.com will be offline from May 31 6:00pm until June 2 12:00AM for upcoming system upgrades. For more information please go to https://community.qnx.com/sf/discussion/do/listPosts/projects.bazaar/discussion.bazaar.topc28418
Forum Topic - More 4.2.1 question:: Page 1 of 4 (4 Items)
   
More 4.2.1 question:  
extern void allo(char *);

void foo(void)
{

        char achar[10];
        unsigned char auchar[10];

        allo ( achar );
        allo ( auchar );

}

qcc -V4.2.1,gcc_ntox86 -w9 -funsigned-char try.c
will give: "pointer targets in passing argument 1 of 'allo' differ in signedness" even though -funsigned-char is 
specified!

- Mario