diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-08-31 15:12:00 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-08-31 15:12:00 +0000 |
commit | cc94151fc4145748ab3fcfdeccfa732bd3334084 (patch) | |
tree | 0342b9c8968502453155850d09ab172bd246661a /libexec | |
parent | 191f491511040cc900d4077c1859281bb34ac11d (diff) |
argh, include prototype for dl_fdprintf(), missed by myself and reviewers.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/ld.so/util.h b/libexec/ld.so/util.h index d3fc5fd5fa3..7a84c79c73b 100644 --- a/libexec/ld.so/util.h +++ b/libexec/ld.so/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.11 2002/07/24 04:11:21 deraadt Exp $ */ +/* $OpenBSD: util.h,v 1.12 2002/08/31 15:11:59 drahn Exp $ */ /* * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com> @@ -40,6 +40,7 @@ void *_dl_malloc(const size_t size); void _dl_free(void *); char *_dl_strdup(const char *); void _dl_printf(const char *fmt, ...); +void _dl_fdprintf(int, const char *fmt, ...); void _dl_show_objects(void); /* |