Add prototype for libc internal interfaces.

This commit is contained in:
Xin LI 2010-03-31 18:37:00 +00:00
parent 9fd9d097aa
commit 64c12e81e2
2 changed files with 4 additions and 0 deletions

View file

@ -30,6 +30,8 @@ __FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/sysctl.h>
int __getosreldate(void);
/*
* This is private to libc. It is intended for wrapping syscall stubs in order
* to avoid having to put SIGSYS signal handlers in place to test for presence

View file

@ -29,6 +29,8 @@ __FBSDID("$FreeBSD$");
#include <sys/types.h>
void _thread_init_stub(void);
__weak_reference(_thread_init_stub, _thread_init);
__weak_reference(_thread_autoinit_dummy_decl_stub, _thread_autoinit_dummy_decl);