diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-13 20:54:34 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-13 20:54:34 +0000 |
commit | 3fdbf6985630e7b8898f030e3ce0399e6bca7029 (patch) | |
tree | 2886a02fa77b5922054edb60d59f208ec53cf4c6 /lib/libc/hidden | |
parent | 87b2c2d9d49711719bea9b779973c3303e3df034 (diff) |
Wrap <sys/sysctl.h> so that calls go direct and the symbol is weak
Diffstat (limited to 'lib/libc/hidden')
-rw-r--r-- | lib/libc/hidden/sys/sysctl.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/libc/hidden/sys/sysctl.h b/lib/libc/hidden/sys/sysctl.h new file mode 100644 index 00000000000..bbb87672260 --- /dev/null +++ b/lib/libc/hidden/sys/sysctl.h @@ -0,0 +1,25 @@ +/* $OpenBSD: sysctl.h,v 1.1 2015/09/13 20:54:33 guenther Exp $ */ +/* + * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org> + * + * 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. + */ + +#ifndef _LIBC_SYS_SYSCTL_H_ +#define _LIBC_SYS_SYSCTL_H_ + +#include_next <sys/sysctl.h> + +PROTO_NORMAL(sysctl); + +#endif /* !_LIBC_SYS_SYSCTL_H_ */ |