CVS: sml-dist/src/runtime/kernel boot.c,1.9,1.10

Matthias Blume <[email protected]>
Newsgroups gmane.comp.lang.sml.smlnj.commits
Message-ID <[email protected]>
Update of /cvsroot/smlnj/sml-dist/src/runtime/kernel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31565/src/runtime/kernel

Modified Files:
	boot.c 
Log Message:
updated runtime system, CML, and eXene to reflect recent changes to Basis

Index: boot.c
===================================================================
RCS file: /cvsroot/smlnj/sml-dist/src/runtime/kernel/boot.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** boot.c	23 May 2002 18:57:57 -0000	1.9
--- boot.c	2 Nov 2005 22:24:39 -0000	1.10
***************
*** 45,49 ****
  PVT void ShowPerID (char *buf, pers_id_t *perID);
  
! # define HEX(c) (isdigit(c) ? (c) - '0' : (c) - 'a' + 10)
  
  /* BootML:
--- 45,55 ----
  PVT void ShowPerID (char *buf, pers_id_t *perID);
  
! static int HEX(int c)
! {
!   if (isdigit(c)) return c - '0';
!   if (c >= 'a' && c <= 'z') return c - 'a' + 10;
!   return c - 'A' + 10;
! }
! 
  
  /* BootML:



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.