Re: Is --enable-utf8 working everywhere?
From: Ulrich Drepper <drepper_at_redhat.com>
 
Date: 2002-07-17 23:33:17 CEST 
On Wed, 2002-07-17 at 09:35, Alan Shutko wrote:
 > Could you explain what the impact of this is?  Is the concern that
 Compile this code:
 extern int *foo (void);
 This is what effectively corresponds to
   return errno ? errno : 1;
 You will always end up with two calls to 'foo' since the compiler is not
 With gcc the story is different since we can declare 'foo' as
   extern int *foo (void) __attribute__ ((const));
 This is why you see only one function can.  But this doesn't work with a
 -- ---------------. ,-. 1325 Chesapeake Terrace Ulrich Drepper \ ,-------------------' \ Sunnyvale, CA 94089 USA Red Hat `--' drepper at redhat.com `------------------------ 
 
  | 
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.