1: /*
   2:  *	"@(#)s_stop.c	1.1"
   3:  */
   4: 
   5: #include <stdio.h>
   6: 
   7: s_stop(s, n)
   8: char *s;
   9: long int n;
  10: {
  11: int i;
  12: 
  13: if(n > 0)
  14:     {
  15:     fprintf(stderr, "STOP: ");
  16:     for(i = 0; i<n ; i++)
  17:         putc(*s++, stderr);
  18:     putc('\n', stderr);
  19:     }
  20: f_exit();
  21: _cleanup();
  22: exit(0);
  23: }

Defined functions

s_stop defined in line 7; never used
Last modified: 1983-05-20
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 565
Valid CSS Valid XHTML 1.0 Strict