]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Put conditional "const" before version_string, not before dummy function
authorKen Raeburn <raeburn@cygnus>
Wed, 28 Oct 1992 13:55:27 +0000 (13:55 +0000)
committerKen Raeburn <raeburn@cygnus>
Wed, 28 Oct 1992 13:55:27 +0000 (13:55 +0000)
for VMS.  Now version 1.91.03.  (Save 1.91.02 for Cygnus P4.)

gas/version.c

index acc2fc4a983ab1b53cd6455c00c021c97256e7b7..cc2cf989f0812737ab15c43a8dbf9135509bbc2a 100644 (file)
@@ -1,7 +1,3 @@
-#if (__STDC__ == 1) || defined(const)
-const
-#endif
-
 /* DO NOT PUT COMMENTS ABOUT CHANGES IN THIS FILE.
    
    This file exists only to define `version_string'.
@@ -21,6 +17,10 @@ dummy3()
 }
 #endif
 
-char version_string[] = "GNU assembler version 1.91 (Cygnus Support pre-release)\n";
+#if (__STDC__ == 1) || defined(const)
+const
+#endif
+
+char version_string[] = "GNU assembler version 1.91.03 (Cygnus Support pre-release)\n";
 
 /* end of version.c */