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

From-SVN: r9338
This commit is contained in:
Mike Stump 1995-04-08 20:38:16 +00:00
parent e9cdf6e48c
commit 3b9835d76b
1 changed files with 5 additions and 0 deletions

View 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