diff options
author | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-10-12 16:27:03 +0000 |
---|---|---|
committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-10-12 16:33:37 +0000 |
commit | 70f30afd4e9af5a51ee324d97e4d8c5f2124ec15 (patch) | |
tree | 8f5a969027ef6ca3db1fe329974984abf7bfba64 /port/strlcpy.c | |
parent | e6a066ac3e8fdf1fcd4f3f2ca1b82bd55eb2da2a (diff) |
Diffstat (limited to 'port/strlcpy.c')
-rw-r--r-- | port/strlcpy.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/port/strlcpy.c b/port/strlcpy.c index 248f2ea3bd7b..3de72a640c59 100644 --- a/port/strlcpy.c +++ b/port/strlcpy.c @@ -1,4 +1,4 @@ -/* $NetBSD: strlcpy.c,v 1.1 2015/01/22 02:36:15 christos Exp $ */ +/* $NetBSD: strlcpy.c,v 1.2 2025/02/11 17:48:30 christos Exp $ */ /* $OpenBSD: strlcpy.c,v 1.7 2003/04/12 21:56:39 millert Exp $ */ /* @@ -22,9 +22,12 @@ #include "config.h" #endif +#ifdef HAVE_SYS_CDEFS_H #include <sys/cdefs.h> +#endif + #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: strlcpy.c,v 1.1 2015/01/22 02:36:15 christos Exp $"); +__RCSID("$NetBSD: strlcpy.c,v 1.2 2025/02/11 17:48:30 christos Exp $"); #endif /* LIBC_SCCS and not lint */ #ifdef _LIBC |