]> git.ipfire.org Git - thirdparty/glibc.git/blob - mach/mig_strncpy.c
iconv, localedef: avoid floating point rounding differences [BZ #24372]
[thirdparty/glibc.git] / mach / mig_strncpy.c
1 /* Silly pointless function MiG needs. */
2
3 #include <mach.h>
4 #include <string.h>
5
6 vm_size_t
7 __mig_strncpy (char *dst, const char *src, vm_size_t len)
8 {
9 return __stpncpy (dst, src, len) - dst;
10 }
11 weak_alias (__mig_strncpy, mig_strncpy)