* cpphash.c: Don't use const on compilers that don't support it.
From-SVN: r9338
This commit is contained in:
parent
e9cdf6e48c
commit
3b9835d76b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user