diff options
| author | Gerd Moellmann | 2001-10-08 08:08:08 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-10-08 08:08:08 +0000 |
| commit | 32c82ac0a18004dac223729f6e3a77a197814086 (patch) | |
| tree | d3fd5ceb6486951b6d1a47e1b2696678e084b3b2 /src/alloc.c | |
| parent | 8a226de76604e91d83b7204443b0fed5f9b5789e (diff) | |
| download | emacs-32c82ac0a18004dac223729f6e3a77a197814086.tar.gz emacs-32c82ac0a18004dac223729f6e3a77a197814086.zip | |
Don't define min/max.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c index 0d6b1b2225f..059c35a0074 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -80,9 +80,6 @@ extern __malloc_size_t __malloc_extra_blocks; | |||
| 80 | 80 | ||
| 81 | #endif /* not DOUG_LEA_MALLOC */ | 81 | #endif /* not DOUG_LEA_MALLOC */ |
| 82 | 82 | ||
| 83 | #define max(A,B) ((A) > (B) ? (A) : (B)) | ||
| 84 | #define min(A,B) ((A) < (B) ? (A) : (B)) | ||
| 85 | |||
| 86 | /* Macro to verify that storage intended for Lisp objects is not | 83 | /* Macro to verify that storage intended for Lisp objects is not |
| 87 | out of range to fit in the space for a pointer. | 84 | out of range to fit in the space for a pointer. |
| 88 | ADDRESS is the start of the block, and SIZE | 85 | ADDRESS is the start of the block, and SIZE |