summaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/libc.c2
-rw-r--r--src/internal/libc.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/libc.c b/src/internal/libc.c
index c1e21ca0..004c1a33 100644
--- a/src/internal/libc.c
+++ b/src/internal/libc.c
@@ -13,3 +13,5 @@ struct __libc __libc;
#ifdef BROKEN_VISIBILITY
__asm__(".hidden __libc");
#endif
+
+size_t __hwcap;
diff --git a/src/internal/libc.h b/src/internal/libc.h
index 53e4e826..ea863d67 100644
--- a/src/internal/libc.h
+++ b/src/internal/libc.h
@@ -18,6 +18,7 @@ struct __libc {
int ofl_lock[2];
};
+extern size_t __hwcap;
#if !defined(__PIC__) || 100*__GNUC__+__GNUC_MINOR__ >= 303 || defined(__PCC__) || defined(__TINYC__)