* cpphash.c: Don't use const on compilers that don't support it.
authorMike Stump <mrs@gcc.gnu.org>
Sat, 8 Apr 1995 20:38:16 +0000 (20:38 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Sat, 8 Apr 1995 20:38:16 +0000 (20:38 +0000)
From-SVN: r9338

gcc/cpphash.c

index fe7cbbf..2ca007c 100644 (file)
@@ -31,6 +31,11 @@ Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 #define NULL 0
 #endif
 
+#ifndef __STDC__
+#define const
+#define volatile
+#endif
+
 /*
  * return hash function on name.  must be compatible with the one
  * computed a step at a time, elsewhere