summaryrefslogtreecommitdiff
path: root/byterun.h
diff options
context:
space:
mode:
Diffstat (limited to 'byterun.h')
-rw-r--r--byterun.h20
1 files changed, 7 insertions, 13 deletions
diff --git a/byterun.h b/byterun.h
index 81e82049cf..edc043ddf1 100644
--- a/byterun.h
+++ b/byterun.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 1997 Malcolm Beattie
+ * Copyright (c) 1996-1998 Malcolm Beattie
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
@@ -15,18 +15,12 @@ struct bytestream {
int (*fread)(char *, size_t, size_t, void*);
void (*freadpv)(U32, void*);
};
-void freadpv _((U32, void *));
void byterun _((struct bytestream));
#else
void byterun _((FILE *));
#endif /* INDIRECT_BGET_MACROS */
-#ifndef PATCHLEVEL
-#include "patchlevel.h"
-#endif
-#if PATCHLEVEL < 4 || (PATCHLEVEL == 4 && SUBVERSION < 50)
-#define dTHR extern int errno
-#endif
+void *bset_obj_store _((void *, I32));
enum {
INSN_RET, /* 0 */
@@ -187,8 +181,8 @@ EXT int optype_size[]
EXT SV * specialsv_list[4];
#define INIT_SPECIALSV_LIST STMT_START { \
-specialsv_list[0] = Nullsv; \
-specialsv_list[1] = &sv_undef; \
-specialsv_list[2] = &sv_yes; \
-specialsv_list[3] = &sv_no; \
-} STMT_END
+ specialsv_list[0] = Nullsv; \
+ specialsv_list[1] = &sv_undef; \
+ specialsv_list[2] = &sv_yes; \
+ specialsv_list[3] = &sv_no; \
+ } STMT_END