intptr_t is an optional type, use intmax_t

This commit is contained in:
Evan Gates 2015-04-14 08:40:31 -07:00 committed by sin
parent ea819714c2
commit 1dbb848037
1 changed files with 1 additions and 1 deletions

2
find.c
View File

@ -19,7 +19,7 @@
/* because putting integers in pointers is undefined by the standard */
union extra {
void *p;
intptr_t i;
intmax_t i;
};
/* Argument passed into a primary's function */