aboutsummaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r--gcc/fix-header.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index 06fc092..b6de982 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -366,7 +366,7 @@ write_rbrac ()
register struct partial_proto *partial;
if (required_unseen_count)
- fprintf (outf, "#if defined(__STDC__) || defined(__cplusplus)\n");
+ fprintf (outf, "#ifdef __cplusplus\n");
/* Now we print out prototypes for those functions that we haven't seen. */
for (rptr = required_functions; *rptr; rptr++)
@@ -395,7 +395,7 @@ write_rbrac ()
}
if (required_unseen_count)
fprintf (outf,
- "#endif /* defined(__STDC__) || defined(__cplusplus) */\n");
+ "#endif /* defined(__cplusplus) */\n");
switch (special_file_handling)
{