[BACK]Return to cdefs.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / sys

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/sys/cdefs.h between version 1.27 and 1.28

version 1.27, 1998/07/27 09:09:03 version 1.28, 1998/12/20 17:46:46
Line 117 
Line 117 
 #endif  #endif
   
 /*  /*
    * GCC2 provides __extension__ to suppress warnings for various GNU C
    * language extensions under "-ansi -pedantic".
    */
   #if !defined(__GNUC__) || __GNUC__ < 2
   #define __extension__           /* delete __extension__ if non-gcc or gcc1 */
   #endif
   
   /*
  * GCC1 and some versions of GCC2 declare dead (non-returning) and   * GCC1 and some versions of GCC2 declare dead (non-returning) and
  * pure (no side effects) functions using "volatile" and "const";   * pure (no side effects) functions using "volatile" and "const";
  * unfortunately, these then cause warnings under "-ansi -pedantic".   * unfortunately, these then cause warnings under "-ansi -pedantic".

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

CVSweb <webmaster@jp.NetBSD.org>