diff options
Diffstat (limited to 'libexec/ld.so/ldconfig/ldconfig_path.c')
-rw-r--r-- | libexec/ld.so/ldconfig/ldconfig_path.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/libexec/ld.so/ldconfig/ldconfig_path.c b/libexec/ld.so/ldconfig/ldconfig_path.c new file mode 100644 index 00000000000..fdd803d33a4 --- /dev/null +++ b/libexec/ld.so/ldconfig/ldconfig_path.c @@ -0,0 +1,45 @@ +/* $OpenBSD: ldconfig_path.c,v 1.1 2016/07/04 20:56:50 kettenis Exp $ */ + +/* + * Copyright (c) 2013 Kurt Miller <kurt@intricatesoftware.com> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> +#include <stdlib.h> +#include <string.h> +#include "util.h" + +void * +_dl_reallocarray(void *ptr, size_t cnt, size_t num) +{ + return reallocarray(ptr, cnt, num); +} + +void * +_dl_malloc(size_t need) +{ + void *ret = malloc(need); + if (ret != NULL) + memset(ret, 0, need); + return (ret); +} + +void +_dl_free(void *p) +{ + free(p); +} + +#include "path.c" |