amd64/include/u.h: fix type of jmp_buf

This commit is contained in:
Giacomo Tesio 2017-09-03 17:44:55 +02:00
parent 4115f92ff6
commit 7f3297dada
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ typedef long ssize_t;
typedef int32_t pid_t;
typedef uint32_t Rune;
typedef union FPdbleword FPdbleword;
typedef uintptr jmp_buf[10]; // for registers.
typedef uintptr_t jmp_buf[10]; // for registers.
typedef long off_t;
typedef long ptrdiff_t;