[BACK]Return to compat_strlcpy.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/compat_strlcpy.c between version 1.4 and 1.5

version 1.4, 2014/08/16 19:00:01 version 1.5, 2020/06/15 01:37:15
Line 1 
Line 1 
 #include "config.h"  /*      $Id$    */
   
 #if HAVE_STRLCPY  
   
 int dummy;  
   
 #else  
   
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
   
 /*  /*
Line 23  int dummy;
Line 16  int dummy;
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #include "config.h"
   
 #include <sys/types.h>  #include <sys/types.h>
 #include <string.h>  #include <string.h>
Line 57  strlcpy(char *dst, const char *src, size_t siz)
Line 51  strlcpy(char *dst, const char *src, size_t siz)
   
         return(s - src - 1);    /* count does not include NUL */          return(s - src - 1);    /* count does not include NUL */
 }  }
   
 #endif  

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb