[BACK]Return to lib.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / awk

Diff for /src/usr.bin/awk/lib.c between version 1.8 and 1.9

version 1.8, 2001/09/08 00:12:40 version 1.9, 2001/11/05 09:58:13
Line 29 
Line 29 
 #include <ctype.h>  #include <ctype.h>
 #include <errno.h>  #include <errno.h>
 #include <stdlib.h>  #include <stdlib.h>
   #include <unistd.h>
 #include <stdarg.h>  #include <stdarg.h>
 #include "awk.h"  #include "awk.h"
 #include "ytab.h"  #include "ytab.h"
Line 503 
Line 504 
         eprint();          eprint();
 }  }
   
 void fpecatch(int n)  void fpecatch(int sig)
 {  {
         FATAL("floating point exception %d", n);          extern Node *curnode;
           char buf[1024];
   
           snprintf(buf, sizeof buf, "floating point exception\n");
           write(STDERR_FILENO, buf, strlen(buf));
   
           if (compile_time != 2 && NR && *NR > 0) {
                   snprintf(buf, sizeof buf, " input record number %d", (int) (*FNR));
                   write(STDERR_FILENO, buf, strlen(buf));
   
                   if (strcmp(*FILENAME, "-") != 0) {
                           snprintf(buf, sizeof buf, ", file %s", *FILENAME);
                           write(STDERR_FILENO, buf, strlen(buf));
                   }
                   write(STDERR_FILENO, "\n", 1);
           }
           if (compile_time != 2 && curnode) {
                   snprintf(buf, sizeof buf, " source line number %d", curnode->lineno);
                   write(STDERR_FILENO, buf, strlen(buf));
           } else if (compile_time != 2 && lineno) {
                   snprintf(buf, sizeof buf, " source line number %d", lineno);
                   write(STDERR_FILENO, buf, strlen(buf));
           }
           if (compile_time == 1 && cursource() != NULL) {
                   snprintf(buf, sizeof buf, " source file %s", cursource());
                   write(STDERR_FILENO, buf, strlen(buf));
           }
           write(STDERR_FILENO, "\n", 1);
           if (dbg > 1)            /* core dump if serious debugging on */
                   abort();
           _exit(1);
 }  }
   
 extern int bracecnt, brackcnt, parencnt;  extern int bracecnt, brackcnt, parencnt;

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9