|
From: Bob T. <bt...@us...> - 2003-11-29 07:19:07
|
Update of /cvsroot/benson/benson3/src In directory sc8-pr-cvs1:/tmp/cvs-serv29315/src Modified Files: Makefile.in stack.h Log Message: Added some stuff Index: Makefile.in =================================================================== RCS file: /cvsroot/benson/benson3/src/Makefile.in,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -r1.47 -r1.48 *** Makefile.in 8 Nov 2003 20:43:19 -0000 1.47 --- Makefile.in 29 Nov 2003 07:19:04 -0000 1.48 *************** *** 80,84 **** ! install: install-lib install-perl install-bin install-sbin install-perl: $(PERL_MODULES) --- 80,87 ---- ! install: install-lib install-network install-perl install-bin install-sbin ! ! install-network: $(LIBNETWORK) ! (cd network && $(MAKE) install) install-perl: $(PERL_MODULES) Index: stack.h =================================================================== RCS file: /cvsroot/benson/benson3/src/stack.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** stack.h 8 Nov 2003 20:43:19 -0000 1.2 --- stack.h 29 Nov 2003 07:19:04 -0000 1.3 *************** *** 16,17 **** --- 16,19 ---- int stack_push(stack_ctx *current_ctx, void *item); void *stack_pop(stack_ctx *current_ctx); + int stack_destroy(stack_ctx *current_ctx); + |