diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/locale.h | 6 | ||||
-rw-r--r-- | include/sys/gmon.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/locale.h b/include/locale.h index 6e0bd91..47760b2 100644 --- a/include/locale.h +++ b/include/locale.h @@ -1 +1,7 @@ +#ifndef _LOCALE_H #include <locale/locale.h> + +/* Now define the internal interfaces. */ +extern struct lconv *__localeconv (void); + +#endif diff --git a/include/sys/gmon.h b/include/sys/gmon.h index c95cb3c..d994dd5 100644 --- a/include/sys/gmon.h +++ b/include/sys/gmon.h @@ -6,4 +6,10 @@ /* Write current profiling data to file. */ extern void __write_profiling (void); extern void write_profiling (void); + +struct __bb; +extern void __bb_init_func (struct __bb *bb); +extern void __bb_exit_func (void); + + #endif |