Diff for /src/sys/sys/param.h between versions 1.9 and 1.10

version 1.9, 2003/11/15 11:46:26 version 1.10, 2003/11/19 00:51:29
Line 43 Line 43
 #ifndef _SYS_PARAM_H_  #ifndef _SYS_PARAM_H_
 #define _SYS_PARAM_H_  #define _SYS_PARAM_H_
   
 #define BSD     199506          /* System version (year & month). */  #define BSD     200307          /* XXX kern.osrevision */
 #define BSD4_3  1  #define BSD4_3  1               /* XXX obsolete */
 #define BSD4_4  1  #define BSD4_4  1               /* XXX obsolete */
   
 /*   /*
  * __FreeBSD_version numbers are documented in the Porter's Handbook.   * __DragonFly_version number.   Note that the name and comment are pattern
  * If you bump the version for any reason, you should update the documentation   * searched from conf/newvers.sh.
  * there.   *
  * Currently this lives here:   * Version changes should be documented in:
  *      doc/en_US.ISO8859-1/books/porters-handbook/book.sgml   *      doc/en_US.ISO8859-1/books/porters-handbook/book.sgml
  */   */
 #undef __FreeBSD_version  
 #define __FreeBSD_version 480101        /* Master, propagated to newvers */  
   
 #undef __DragonFly_version  #undef __DragonFly_version
 #define __DragonFly_version 100000  #define __DragonFly_version 100000      /* Master, propagated to newvers */
   
   /* 
    * __FreeBSD_version numbers for source compatibility.  This is temporary
    * along with the __FreeBSD__ define in gcc.
    */
   #undef __FreeBSD_version
   #define __FreeBSD_version 480101
   
 #ifndef NULL  #ifndef NULL
 #define NULL    0  #define NULL    0

Removed from v.1.9  
changed lines
  Added in v.1.10