Thanks Przemek

I am snding it to Pelles


Przemyslaw Czerpak-2 wrote:
> 
> /* compiled and linked by PellesC 4.50.15:
>  *    pocc.exe -Ox test.c && polink.exe t.obj
>  */
> 
> void * somefunc( void ) { return 0; }
> 
> void * func_ok( void )
> {
>    void ** gtHolder = ( void ** ) somefunc();
> 
>    if( gtHolder )
>       return *gtHolder;
>    else
>       return 0;
> }
> 
> void * func_gpf( void )
> {
>    void ** gtHolder = ( void ** ) somefunc();
>    void * pGT = 0;
> 
>    if( gtHolder )
>       pGT = *gtHolder;
>    return pGT;
> }
> 
> int main( void )
> {
>    func_ok();
>    func_gpf();
> 
>    return 0;
> }
> 

Regards
Pritpal Bedi

-- 
View this message in context: 
http://www.nabble.com/hb_gt_ItemBase%28%29-and-PellesC-tp22344045p22360289.html
Sent from the Harbour - Dev mailing list archive at Nabble.com.

_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to