On Thu, Mar 14, 2002 at 01:19:32PM +0000, Wez Furlong wrote:
> I know of a compiler for the Amiga that doesn't grok 'sizeof struct foo';
> the solution is to always use 'sizeof(struct foo)'.

  sizeof <type> is incorrect.
  
  The correct sizeof semantics are
  
  sizeof <value>  
  or:  
  sizeof( <type> )
  
  So sizeof (<value>) means to evaluate '(<value>)' whoose result is
'<value>', then compute 'sizeof <value>' .

-- 
 __  /*-      Frank DENIS (Jedi/Sector One) <[EMAIL PROTECTED]>     -*\  __
 \ '/    <a href="http://www.PureFTPd.Org/";> Secure FTP Server </a>    \' /
  \/  <a href="http://www.Jedi.Claranet.Fr/";> Misc. free software </a>  \/

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to