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

Diff for /src/usr.bin/seq/seq.c between version 1.2 and 1.3

version 1.2, 2022/02/22 16:08:59 version 1.3, 2022/02/22 16:14:38
Line 99 
Line 99 
         char *cur_print, *last_print;          char *cur_print, *last_print;
         char pad = ZERO;          char pad = ZERO;
   
           if (pledge("stdio", NULL) == -1)
                   err(1, "pledge");
   
         /* Determine the locale's decimal point. */          /* Determine the locale's decimal point. */
         locale = localeconv();          locale = localeconv();
         if (locale && locale->decimal_point && locale->decimal_point[0] != '\0')          if (locale && locale->decimal_point && locale->decimal_point[0] != '\0')

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3