Mercurial > hg > xemacs-beta
comparison src/unexelfsgi.c @ 58:8b0bdfdf0cf0 r19-16-pre4
Import from CVS: tag r19-16-pre4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:58:37 +0200 |
parents | ee648375d8d6 |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
57:14ab9e17efe0 | 58:8b0bdfdf0cf0 |
---|---|
542 #define PATCH_INDEX(n) \ | 542 #define PATCH_INDEX(n) \ |
543 do { \ | 543 do { \ |
544 if ((n) >= old_bss_index) \ | 544 if ((n) >= old_bss_index) \ |
545 (n)++; } while (0) | 545 (n)++; } while (0) |
546 typedef unsigned char byte; | 546 typedef unsigned char byte; |
547 | |
548 /* IRIX 5 defines this only in inttypes.h, and you can't include both | |
549 * inttypes.h and sys/types.h. This is fixed by IRIX 6.2. */ | |
550 #ifndef HAVE_UINTPTR_T | |
551 typedef unsigned long int uintptr_t; | |
552 #endif | |
547 | 553 |
548 /* Round X up to a multiple of Y. */ | 554 /* Round X up to a multiple of Y. */ |
549 | 555 |
550 int | 556 int |
551 round_up (x, y) | 557 round_up (x, y) |