Deprecated:  The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
diff -crN rogue/Makefile.sl-zaurus rogue-slzaurus/Makefile.sl-zaurus
*** rogue/Makefile.sl-zaurus	Thu Jan  1 09:00:00 1970
--- rogue-slzaurus/Makefile.sl-zaurus	Mon Jul 14 20:49:11 2003
***************
*** 0 ****
--- 1,13 ----
+ PROG=	rogue
+ OBJS=	hit.o init.o inventory.o level.o machdep.o main.o \
+ 	message.o monster.o move.o object.o pack.o play.o random.o ring.o \
+ 	room.o save.o score.o spec_hit.o throw.o trap.o use.o zap.o
+ LIBS=	-L. -lncurses
+ CC=	/usr/compat/linux/opt/Embedix/tools/bin/arm-linux-gcc
+ CFLAGS=	-DUNIX -I. -fwritable-strings
+ 
+ $(PROG): $(OBJS)
+ 	$(CC) -o $(PROG) $(OBJS) $(LIBS)
+ 
+ .c.o:
+ 	$(CC) $(CFLAGS) -c $<	
diff -crN rogue/machdep.c rogue-slzaurus/machdep.c
*** rogue/machdep.c	Mon Dec 17 21:43:23 2001
--- rogue-slzaurus/machdep.c	Mon Jul 14 20:51:27 2003
***************
*** 111,116 ****
--- 111,122 ----
  #include 
  #endif
  
+ /* */
+ #include 
+ #include 
+ #define fpurge(x) __fpurge(x)
+ /* */
+ 
  #include 
  #include 
  #include 
diff -crN rogue/rogue.h rogue-slzaurus/rogue.h
*** rogue/rogue.h	Mon Dec 17 21:43:23 2001
--- rogue-slzaurus/rogue.h	Mon Jul 14 20:51:57 2003
***************
*** 458,464 ****
--- 458,470 ----
  struct id *get_id_table();
  unsigned short gr_what_is();
  #define rrandom random
+ /* */
+ #if 0
  #define srrandom(x) srandomdev()
+ #else
+ #define srrandom(x) srandom()
+ #endif
+ /* */
  long lget_number();
  long xxx();
  void byebye(), onintr(), error_save();