URI: 
       tmore 64-bit fixes - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit b26eedb61d10954f1a573903534e305102f15fb9
   DIR parent 4f959600b6cce4334367e7748e87a2a0ec42ab29
  HTML Author: rsc <devnull@localhost>
       Date:   Thu, 20 Apr 2006 21:20:11 +0000
       
       more 64-bit fixes
       
       Diffstat:
         M src/cmd/lex/ldefs.h                 |       2 +-
         M src/cmd/lex/lmain.c                 |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/src/cmd/lex/ldefs.h b/src/cmd/lex/ldefs.h
       t@@ -88,7 +88,7 @@ extern int pres;        /* present input character */
        extern int peek;        /* next input character */
        extern int *name;
        extern int *left;
       -extern int *right;
       +extern uintptr *right;
        extern int *parent;
        extern uchar **ptr;
        extern uchar *nullstr;
   DIR diff --git a/src/cmd/lex/lmain.c b/src/cmd/lex/lmain.c
       t@@ -42,7 +42,7 @@ Biobuf *fin, *fother;
        int fptr;
        int *name;
        int *left;
       -int *right;
       +uintptr *right;
        int *parent;
        uchar *nullstr;
        uchar **ptr;