cvsuser 03/02/18 12:36:59
Modified: . MANIFEST packfile.c
Log:
packfile #21288; MANIFEST typo
Revision Changes Path
1.317 +1 -1 parrot/MANIFEST
Index: MANIFEST
===================================================================
RCS file: /cvs/public/parrot/MANIFEST,v
retrieving revision 1.316
retrieving revision 1.317
diff -u -w -r1.316 -r1.317
--- MANIFEST 18 Feb 2003 20:19:05 -0000 1.316
+++ MANIFEST 18 Feb 2003 20:36:59 -0000 1.317
@@ -210,7 +210,7 @@
examples/benchmarks/primes.pl
examples/benchmarks/primes2.c
examples/benchmarks/primes2.pasm
-examples/benchmarks/primes2.pl
+examples/benchmarks/primes2.py
examples/benchmarks/stress.pasm
examples/benchmarks/stress.pl
examples/benchmarks/stress2.pasm
1.77 +11 -11 parrot/packfile.c
Index: packfile.c
===================================================================
RCS file: /cvs/public/parrot/packfile.c,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -w -r1.76 -r1.77
--- packfile.c 11 Feb 2003 11:34:07 -0000 1.76
+++ packfile.c 18 Feb 2003 20:36:59 -0000 1.77
@@ -7,7 +7,7 @@
** This program is free software. It is subject to the same
** license as Parrot itself.
**
-** $Id: packfile.c,v 1.76 2003/02/11 11:34:07 leo Exp $
+** $Id: packfile.c,v 1.77 2003/02/18 20:36:59 leo Exp $
**
** History:
** Rework by Melvin; new bytecode format, make bytecode portable.
@@ -763,9 +763,9 @@
PackFile_Segment_new_seg(pf, PF_BYTEC_SEG, BYTE_CODE_SEGMENT_NAME, 1);
pf->need_wordsize = 0;
pf->need_endianize = 0;
- pf->fetch_op = (opcode_t (*)(opcode_t)) NULL;
- pf->fetch_iv = (INTVAL (*)(INTVAL)) NULL;
- pf->fetch_nv = (void (*)(unsigned char *, unsigned char *)) NULL;
+ pf->fetch_op = (opcode_t (*)(opcode_t)) NULLfunc;
+ pf->fetch_iv = (INTVAL (*)(INTVAL)) NULLfunc;
+ pf->fetch_nv = (void (*)(unsigned char *, unsigned char *)) NULLfunc;
return pf;
}
@@ -868,10 +868,10 @@
};
struct PackFile_funcs defaultf = {
PackFile_Segment_new,
- (PackFile_Segment_destroy_func_t) NULL,
- (PackFile_Segment_packed_size_func_t) NULL,
- (PackFile_Segment_pack_func_t) NULL,
- (PackFile_Segment_unpack_func_t) NULL,
+ (PackFile_Segment_destroy_func_t) NULLfunc,
+ (PackFile_Segment_packed_size_func_t) NULLfunc,
+ (PackFile_Segment_pack_func_t) NULLfunc,
+ (PackFile_Segment_unpack_func_t) NULLfunc,
default_dump
};
struct PackFile_funcs fixupf = {
@@ -893,9 +893,9 @@
struct PackFile_funcs bytef = {
byte_code_new,
byte_code_destroy,
- (PackFile_Segment_packed_size_func_t) NULL,
- (PackFile_Segment_pack_func_t) NULL,
- (PackFile_Segment_unpack_func_t) NULL,
+ (PackFile_Segment_packed_size_func_t) NULLfunc,
+ (PackFile_Segment_pack_func_t) NULLfunc,
+ (PackFile_Segment_unpack_func_t) NULLfunc,
default_dump
};
struct PackFile_funcs debugf = {