diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-13 05:59:29 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-13 05:59:29 +0000 |
commit | 085c52ceb73cd10b56d00a14fdd8cd4dabad2630 (patch) | |
tree | 850192d2a4b5cd8412cd76239036acd40b670e17 /libexec/ld.so/ldconfig/ld.h | |
parent | 0bd0beffa50be8c06045a211ae2fcc25a500a197 (diff) |
spacing
Diffstat (limited to 'libexec/ld.so/ldconfig/ld.h')
-rw-r--r-- | libexec/ld.so/ldconfig/ld.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libexec/ld.so/ldconfig/ld.h b/libexec/ld.so/ldconfig/ld.h index 1d60f0b6f64..868d86ec260 100644 --- a/libexec/ld.so/ldconfig/ld.h +++ b/libexec/ld.so/ldconfig/ld.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.h,v 1.6 2002/05/24 03:44:37 deraadt Exp $ */ +/* $OpenBSD: ld.h,v 1.7 2006/05/13 05:59:28 deraadt Exp $ */ /* * Header file to make code compatible with ELF version * ldconfig was taken from the a.out ld. @@ -7,9 +7,11 @@ extern int n_search_dirs; extern char **search_dirs; + char *xstrdup(const char *); void *xmalloc(size_t); void *xrealloc(void *, size_t); +void *xcalloc(size_t, size_t); char *concat(const char *, const char *, const char *); void add_search_dir(char *name); |