view src/usr/kill.c @ 94:d876c9a65239 default tip

impl mac os target
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Wed, 23 Oct 2019 14:31:38 +0900
parents 83c23a36980d
children
line wrap: on
line source

#include "types.h"
#include "stat.h"
#include "user.h"

int
main(int argc, char **argv)
{
    int i;
    
    if(argc < 1){
        printf(2, "usage: kill pid...\n");
        exit();
    }
    for(i=1; i<argc; i++)
        kill(atoi(argv[i]));
    exit();
}