Change 18556 by jhi@kosh on 2003/01/22 12:59:02
Subject: [PATCH perlio.h] (was RE: [PATCH] %_ (was Re: [PATCH] operation on
`PL_na' may be undefined))
From: Robin Barker <[EMAIL PROTECTED]>
Date: Mon, 20 Jan 2003 15:26:21 -0000
Message-ID: <[EMAIL PROTECTED]>
Affected files ...
... //depot/perl/perlio.h#43 edit
Differences ...
==== //depot/perl/perlio.h#43 (text) ====
Index: perl/perlio.h
--- perl/perlio.h#42~17259~ Sun Jun 16 09:54:28 2002
+++ perl/perlio.h Wed Jan 22 04:59:02 2003
@@ -206,7 +206,10 @@
#endif
#ifndef PerlIO_stdoutf
extern int PerlIO_stdoutf(const char *, ...)
- __attribute__ ((__format__(__printf__, 1, 2)));
+#ifdef CHECK_FORMAT
+ __attribute__ ((__format__(__printf__, 1, 2)))
+#endif
+;
#endif
#ifndef PerlIO_puts
extern int PerlIO_puts(PerlIO *, const char *);
@@ -266,11 +269,17 @@
#endif
#ifndef PerlIO_printf
extern int PerlIO_printf(PerlIO *, const char *, ...)
- __attribute__ ((__format__(__printf__, 2, 3)));
+#ifdef CHECK_FORMAT
+ __attribute__ ((__format__(__printf__, 2, 3)))
+#endif
+;
#endif
#ifndef PerlIO_sprintf
extern int PerlIO_sprintf(char *, int, const char *, ...)
- __attribute__ ((__format__(__printf__, 3, 4)));
+#ifdef CHECK_FORMAT
+ __attribute__ ((__format__(__printf__, 3, 4)))
+#endif
+;
#endif
#ifndef PerlIO_vprintf
extern int PerlIO_vprintf(PerlIO *, const char *, va_list);
End of Patch.