aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/mips
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2025-01-10 17:58:58 +0100
committerFlorian Weimer <fweimer@redhat.com>2025-01-10 19:02:47 +0100
commit4a9a8a50981e2a3e0a04ef4c7ad7c26807c18161 (patch)
tree1da09d0106be0327755e65289fc0482d71bef215 /sysdeps/mips
parentc3d1dac96bdd10250aa37bb367d5ef8334a093a1 (diff)
downloadglibc-4a9a8a50981e2a3e0a04ef4c7ad7c26807c18161.tar.xz
glibc-4a9a8a50981e2a3e0a04ef4c7ad7c26807c18161.zip
Add missing include guards to <dl-tls.h>
Some architecture-specific variants lack header inclusion guards. Add them for consistency with the generic version.
Diffstat (limited to 'sysdeps/mips')
-rw-r--r--sysdeps/mips/dl-tls.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/mips/dl-tls.h b/sysdeps/mips/dl-tls.h
index 1ce3054bbb..c1859719f5 100644
--- a/sysdeps/mips/dl-tls.h
+++ b/sysdeps/mips/dl-tls.h
@@ -16,6 +16,8 @@
License along with the GNU C Library. If not, see
<https://www.gnu.org/licenses/>. */
+#ifndef _DL_TLS_H
+#define _DL_TLS_H
/* Type used for the representation of TLS information in the GOT. */
typedef struct
@@ -42,3 +44,5 @@ typedef struct
extern void *__tls_get_addr (tls_index *ti);
#define __TLS_GET_ADDR(__ti) (__tls_get_addr (__ti) - TLS_DTV_OFFSET)
+
+#endif /* _DL_TLS_H */