1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

(ptrdiff_t): Typedef to long when configure didn't find

it.
This commit is contained in:
Marius Vollmer 2001-06-14 17:37:38 +00:00
parent be8dd11837
commit 38956d845c

View file

@ -279,6 +279,10 @@ typedef unsigned long long ulong_long;
* - ... add more
*/
#ifndef HAVE_PTRDIFF_T
typedef long ptrdiff_t;
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif