home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / dev / src / amilock / source / kill.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-11  |  403 b   |  23 lines

  1. #include <exec/ports.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. #include <ctype.h>
  6.  
  7. #include "headers/global.h"
  8. #include "headers/deamon.h"
  9. #include "headers/talkto_proto.h"
  10.  
  11. static const char __Version[]=LOGINVERST;
  12.  
  13.  
  14. main() {
  15.     unsigned long    Status;
  16.  
  17.     do {
  18.         Status = TalkTo(NULL,NULL,NULL,QUIT);
  19.         if (!(Status == OK)) {
  20.             printf("Kill Failed\n");
  21.         }
  22.     } while (!(Status == OK));
  23. }