const is a reserved word in ANSI C
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sun, 3 Jan 1988 16:15:29 +0000 (08:15 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Sun, 3 Jan 1988 16:15:29 +0000 (08:15 -0800)
SCCS-vsn: usr.bin/pascal/src/stab.c 5.3

usr/src/usr.bin/pascal/src/stab.c

index 08f1f6a..c0c23c6 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)stab.c     5.2 (Berkeley) %G%";
+static char sccsid[] = "@(#)stab.c     5.3 (Berkeley) %G%";
 #endif not lint
 
     /*
 #endif not lint
 
     /*
@@ -429,13 +429,13 @@ stabglabel( label , line )
     /*
      * global constants
      */
     /*
      * global constants
      */
-stabgconst( const , line )
-    char       *const;
+stabgconst( constant , line )
+    char       *constant;
     int                line;
     {
 
            putprintf( "        .stabs  \"%s\",0x%x,0,0x%x,0x%x" , 0 
     int                line;
     {
 
            putprintf( "        .stabs  \"%s\",0x%x,0,0x%x,0x%x" , 0 
-                       , (int) const , N_PC , N_PGCONST , ABS( line ) );
+                       , (int) constant , N_PC , N_PGCONST , ABS( line ) );
     }
 
 /*
     }
 
 /*