16 lines
236 B
C
16 lines
236 B
C
/* @(#)intr_routine.c 1.1 94/10/31 SMI */
|
|
|
|
/*
|
|
* Copyright (c) 1988 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include "signal.h"
|
|
|
|
void
|
|
intr_routine(child)
|
|
{
|
|
(void) kill(child,SIGINT);
|
|
exit(1);
|
|
}
|
|
|