Commit 3b9835d7 by Mike Stump

* cpphash.c: Don't use const on compilers that don't support it.

From-SVN: r9338
parent e9cdf6e4
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment