1/* Silly pointless function MiG needs. */
2
3#include <mach.h>
4#include <string.h>
5
6vm_size_t
7__mig_strncpy (char *dst, const char *src, vm_size_t len)
8{
9 return __stpncpy (dst, src, len) - dst;
10}
11weak_alias (__mig_strncpy, mig_strncpy)
12

source code of glibc/mach/mig_strncpy.c