summaryrefslogtreecommitdiff
path: root/x2p/str.c
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1994-05-04 23:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1994-05-04 23:00:00 +0000
commit85e6fe838fb25b257a1b363debf8691c0992ef71 (patch)
treefd5340cd6c3bbabfc21d3b0cac48e7ab3a481ebf /x2p/str.c
parent2304df62caa7d9be70e8b8bcdb454e139c9c103d (diff)
downloadperl-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/str.c')
-rw-r--r--x2p/str.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/x2p/str.c b/x2p/str.c
index ceea2e53d9..bda549164d 100644
--- a/x2p/str.c
+++ b/x2p/str.c
@@ -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;
}