summaryrefslogtreecommitdiff
path: root/amd64/include
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@gmx.de>2012-09-18 18:18:43 +0200
committercinap_lenrek <cinap_lenrek@gmx.de>2012-09-18 18:18:43 +0200
commit3ba213a9d79bfe52f9a8aa6834c67eac665de136 (patch)
tree6aa9f02d86e384b6296b508c1444dea37534ca8c /amd64/include
parent36f4f9fcd381d0423a48edee91d13e596c740c54 (diff)
downloadplan9front-3ba213a9d79bfe52f9a8aa6834c67eac665de136.tar.xz
6c: extern register fix (import from patch/6c-extreg)
to make it easy to use normal libraries (such as libdraw, libsec, and libmp) with the kernel, which uses extern register, don't stray into the external register set when allocating values to registers.
Diffstat (limited to 'amd64/include')
-rw-r--r--amd64/include/u.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/amd64/include/u.h b/amd64/include/u.h
index feb121703..8dce5066f 100644
--- a/amd64/include/u.h
+++ b/amd64/include/u.h
@@ -10,7 +10,7 @@ typedef unsigned long long uintptr;
typedef unsigned long usize;
typedef ushort Rune;
typedef union FPdbleword FPdbleword;
-typedef uvlong jmp_buf[2];
+typedef uintptr jmp_buf[2];
#define JMPBUFSP 0
#define JMPBUFPC 1
#define JMPBUFDPC 0