From: Perl 5 Porters <perl5-porters@africa.nicoh.com>
Date: Sat, 7 Sep 1996 03:10:43 +0000 (+0000)
Subject: Add _STDIO_LOADED (VMS) to list of guard symbols.
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d8d253f04ead39466658b138fa78f1ec8e7fc42a;p=p5sagit%2Fp5-mst-13.2.git

Add _STDIO_LOADED (VMS) to list of guard symbols.
---

diff --git a/nostdio.h b/nostdio.h
index 3e1e665..256a638 100644
--- a/nostdio.h
+++ b/nostdio.h
@@ -3,9 +3,10 @@
    A more ambitious set of possible symbols can be found in
    sfio.h (inside an _cplusplus gard).
 */
-#if !defined(_STDIO_H) && !defined(FILE) && !defined(_STDIO_INCLUDED)
+#if !defined(_STDIO_H) && !defined(FILE) && !defined(_STDIO_INCLUDED) && !defined(__STDIO_LOADED)
 #define _STDIO_H
 #define _STDIO_INCLUDED
+#define __STDIO_LOADED
 struct _FILE;
 #define FILE struct _FILE
 #endif