From cbf35978a9870fb1f5c73a852c986d4fcca6c2d4 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 6 Jun 2011 20:12:42 -0400 Subject: use __attribute__((const)) for errno and pthread_self if __GNUC__ is defined this is not too ugly and should result in significant code size and performance improvements for many programs. --- include/errno.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/errno.h') diff --git a/include/errno.h b/include/errno.h index d9c2c9c7..9d680338 100644 --- a/include/errno.h +++ b/include/errno.h @@ -7,6 +7,9 @@ extern "C" { #include +#ifdef __GNUC__ +__attribute__((const)) +#endif extern int *__errno_location(void); #define errno (*__errno_location()) -- cgit v1.2.1