diff options
author | Larry Wall <lwall@netlabs.com> | 1994-05-04 23:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1994-05-04 23:00:00 +0000 |
commit | 85e6fe838fb25b257a1b363debf8691c0992ef71 (patch) | |
tree | fd5340cd6c3bbabfc21d3b0cac48e7ab3a481ebf /x2p | |
parent | 2304df62caa7d9be70e8b8bcdb454e139c9c103d (diff) | |
download | perl-85e6fe838fb25b257a1b363debf8691c0992ef71.tar.gz |
perl 5.0 alpha 9perl-5a9
[editor's note: the sparc executables have not been included,
and emacs backup files have been removed]
Diffstat (limited to 'x2p')
-rw-r--r-- | x2p/Makefile | 4 | ||||
-rw-r--r-- | x2p/makefile | 4 | ||||
-rw-r--r-- | x2p/malloc.c | 2 | ||||
-rw-r--r-- | x2p/str.c | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/x2p/Makefile b/x2p/Makefile index 2d2ff74b8f..6e87e87a23 100644 --- a/x2p/Makefile +++ b/x2p/Makefile @@ -1,4 +1,4 @@ -# $RCSfile: Makefile.SH,v 28453Revision: 4.1 28453Date: 92/08/07 18:29:07 $ +# $RCSfile: Makefile.SH,v 3314Revision: 4.1 3314Date: 92/08/07 18:29:07 $ # # $Log: Makefile.SH,v $ # Revision 4.1 92/08/07 18:29:07 lwall @@ -32,7 +32,7 @@ mallocsrc = malloc.c mallocobj = malloc.o shellflags = -libs = -ldl -lm -lposix +libs = -ldbm -ldl -lm -lposix CCCMD = `sh $(shellflags) cflags $@` diff --git a/x2p/makefile b/x2p/makefile index 18b8e0b428..fc29d5de95 100644 --- a/x2p/makefile +++ b/x2p/makefile @@ -1,4 +1,4 @@ -# $RCSfile: Makefile.SH,v 28453Revision: 4.1 28453Date: 92/08/07 18:29:07 $ +# $RCSfile: Makefile.SH,v 3314Revision: 4.1 3314Date: 92/08/07 18:29:07 $ # # $Log: Makefile.SH,v $ # Revision 4.1 92/08/07 18:29:07 lwall @@ -32,7 +32,7 @@ mallocsrc = malloc.c mallocobj = malloc.o shellflags = -libs = -ldl -lm -lposix +libs = -ldbm -ldl -lm -lposix CCCMD = `sh $(shellflags) cflags $@` diff --git a/x2p/malloc.c b/x2p/malloc.c index d5c4717131..396d31cef2 100644 --- a/x2p/malloc.c +++ b/x2p/malloc.c @@ -64,7 +64,7 @@ static int morecore(); */ union overhead { union overhead *ov_next; /* when free */ -#if ALIGNBYTES > 4 +#if MEM_ALIGNBYTES > 4 double strut; /* alignment problems */ #endif struct { @@ -287,7 +287,7 @@ str_gets(str,fp) register STR *str; register FILE *fp; { -#ifdef STDSTDIO /* Here is some breathtakingly efficient cheating */ +#ifdef USE_STD_STDIO /* Here is some breathtakingly efficient cheating */ register char *bp; /* we're going to steal some values */ register int cnt; /* from the stdio struct and put EVERYTHING */ @@ -339,7 +339,7 @@ thats_all_folks: *bp = '\0'; str->str_cur = bp - str->str_ptr; /* set length */ -#else /* !STDSTDIO */ /* The big, slow, and stupid way */ +#else /* !USE_STD_STDIO */ /* The big, slow, and stupid way */ static char buf[4192]; @@ -348,7 +348,7 @@ thats_all_folks: else str_set(str, No); -#endif /* STDSTDIO */ +#endif /* USE_STD_STDIO */ return str->str_cur ? str->str_ptr : Nullch; } |