diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-18 06:53:52 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-18 06:53:52 +0000 |
commit | 48afc85aad88aa4f7501bf7715c86b4e94628960 (patch) | |
tree | ff3e5fdc63016ea41f7475844e8598af7ead4c2f /include/stdlib.h | |
parent | 892cc11771a53d7ee30c5334ca2bda56fd6e6c8b (diff) | |
download | uClibc-alpine-48afc85aad88aa4f7501bf7715c86b4e94628960.tar.bz2 uClibc-alpine-48afc85aad88aa4f7501bf7715c86b4e94628960.tar.xz |
Synch with trunk @ 24087
Step 10: libc_hidden_removal
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index b87dfd921..657167541 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -498,6 +498,7 @@ extern int posix_memalign (void **__memptr, size_t __alignment, size_t __size) __BEGIN_NAMESPACE_STD /* Abort execution and generate a core-dump. */ extern void abort (void) __THROW __attribute__ ((__noreturn__)); +libc_hidden_proto(abort) /* Register a function to be called when `exit' is called. */ @@ -516,6 +517,7 @@ __BEGIN_NAMESPACE_STD in the reverse of the order in which they were registered perform stdio cleanup, and terminate program execution with STATUS. */ extern void exit (int __status) __THROW __attribute__ ((__noreturn__)); +libc_hidden_proto(exit) __END_NAMESPACE_STD #ifdef __USE_ISOC99 |