Browse Source

aarch64: Fix typo in a jmp_buf preprocessor conditional

Robin Randhawa 6 years ago
parent
commit
0842d6504b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/setjmp.h

+ 1 - 1
include/setjmp.h

@@ -1,7 +1,7 @@
 #ifndef _SETJMP_H
 #define _SETJMP_H
 
-#ifdef __arch64__
+#ifdef __aarch64__
 typedef unsigned long jmp_buf[22];
 #endif