summaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:09:55 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-11-18 01:09:55 +0000
commite8c6de1939e1f8a2898a0e53134fa175560b9469 (patch)
tree0d573525f6e657aa60bf04b4a7c3ddb9225f6347 /include/stdlib.h
parent508383b431a6ef45c0992fdd47064edb581c6214 (diff)
libc_hidden_proto removal, just a few functions
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h2
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