[BACK]Return to misc.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / bin / dd

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

Diff for /src/bin/dd/misc.c between version 1.20 and 1.20.4.1

version 1.20, 2007/07/03 05:25:25 version 1.20.4.1, 2007/11/06 23:07:17
Line 47  __RCSID("$NetBSD$");
Line 47  __RCSID("$NetBSD$");
 #include <sys/time.h>  #include <sys/time.h>
   
 #include <err.h>  #include <err.h>
 #include <signal.h>  
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <util.h>
 #include <inttypes.h>  #include <inttypes.h>
   
 #include "dd.h"  #include "dd.h"
Line 120  terminate(int signo)
Line 120  terminate(int signo)
 {  {
   
         summary();          summary();
         (void)signal(signo, SIG_DFL);          (void)raise_default_signal(signo);
         raise(signo);          _exit(127);
         /* NOTREACHED */  
 }  }

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.20.4.1

CVSweb <webmaster@jp.NetBSD.org>