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

Diff for /src/usr.bin/mail/Attic/aux.c between version 1.29 and 1.30

version 1.29, 2015/10/16 17:56:07 version 1.30, 2018/09/16 02:38:57
Line 45 
Line 45 
  * Return a pointer to a dynamic copy of the argument.   * Return a pointer to a dynamic copy of the argument.
  */   */
 char *  char *
 savestr(char *str)  savestr(const char *str)
 {  {
         char *new;          char *new;
         int size = strlen(str) + 1;          int size = strlen(str) + 1;

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30