OSDN Git Service

* protoize.c (creat, read, write): Do not declare.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Apr 1998 22:55:33 +0000 (22:55 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 8 Apr 1998 22:55:33 +0000 (22:55 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19061 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/protoize.c

index 6462e6e..6edf783 100644 (file)
@@ -23,6 +23,8 @@ Fri Apr  3 17:02:13 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
 
 Wed Apr  8 12:51:19 1998  Jeffrey A Law  (law@cygnus.com)
 
+       * protoize.c (creat, read, write): Do not declare.
+
        * jump.c (mark_jump_label): Record REG_LABEL notes for insns which
        refer to the CODE_LABEL before a dispatch table.
 
index e61e92e..699bfe6 100644 (file)
@@ -163,14 +163,14 @@ typedef char * const_pointer_type;
 /* Declaring stat or __flsbuf with a prototype
    causes conflicts with system headers on some systems.  */
 
-extern int creat ();
 #if 0 /* These conflict with stdio.h on some systems.  */
+extern int creat ();
 extern int fprintf (FILE *, const char *, ...);
 extern int printf (const char *, ...);
 extern int open (const char *, int, ...);
-#endif /* 0 */
 extern int read ();
 extern int write ();
+#endif /* 0 */
 extern int close ();
 extern int fflush ();
 extern int atoi ();