* Use ptrdiff_t for address arithmetics.

git-svn-id: svn://svn.zoy.org/elk/trunk@40 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
sam 2003-08-25 14:47:40 +00:00
parent 64a1148f89
commit c0f08629cc
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ typedef struct {
typedef int gcspace_t; /* type for space and type arrays */
typedef unsigned long int gcptr_t; /* type for pointers */
typedef unsigned long int pageno_t; /* type for page numbers */
typedef unsigned long int addrarith_t; /* type for address arithmetic */
typedef ptrdiff_t addrarith_t; /* type for address arithmetic */
extern gcspace_t *space;
extern gcspace_t current_space;