Diff for /src/sys/net/tun/if_tun.c between versions 1.13 and 1.14

version 1.13, 2004/05/13 23:49:24 version 1.14, 2004/05/19 22:53:01
Line 98  static struct cdevsw tun_cdevsw = { Line 98  static struct cdevsw tun_cdevsw = {
 };  };
   
 static void  static void
 tunattach(dummy)  tunattach(void *dummy)
         void *dummy;  
 {  {
           cdevsw_add(&tun_cdevsw, 0, 0);
         cdevsw_add(&tun_cdevsw);  
 }  }
   
 static void  static void

Removed from v.1.13  
changed lines
  Added in v.1.14