Ver código fonte

aarch64: Fix typo in a jmp_buf preprocessor conditional

Robin Randhawa 6 anos atrás
pai
commit
0842d6504b
1 arquivos alterados com 1 adições e 1 exclusões
  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