Mercurial > hg > xemacs-beta
comparison src/mem-limits.h @ 5934:e2fae7783046 cygwin
lots of use of EMACS_INT, a few others, to eliminate all pointer truncation warnings
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sat, 12 Dec 2015 19:08:46 +0000 |
parents | 308d34e9f07d |
children |
comparison
equal
deleted
inserted
replaced
5933:c1e8f3294298 | 5934:e2fae7783046 |
---|---|
52 | 52 |
53 #ifdef emacs | 53 #ifdef emacs |
54 typedef void *POINTER; | 54 typedef void *POINTER; |
55 | 55 |
56 #ifndef CYGWIN | 56 #ifndef CYGWIN |
57 typedef unsigned long SIZE; | 57 typedef uintptr_t SIZE; |
58 #endif | 58 #endif |
59 | 59 |
60 extern POINTER start_of_data (void); | 60 extern POINTER start_of_data (void); |
61 #define EXCEEDS_LISP_PTR(ptr) 0 | 61 #define EXCEEDS_LISP_PTR(ptr) 0 |
62 | 62 |