diff options
| author | Stefan Kangas | 2025-01-19 17:15:20 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2025-01-19 17:16:01 +0100 |
| commit | f3b57fa519797df13f2e0ed9ebb097c37f5d71ce (patch) | |
| tree | 6e701f21545249c1049936d67a27cd5bd3e58dc7 /src/gmalloc.c | |
| parent | 4106fd28c7719d363395438400530752fb86f57c (diff) | |
| download | emacs-f3b57fa519797df13f2e0ed9ebb097c37f5d71ce.tar.gz emacs-f3b57fa519797df13f2e0ed9ebb097c37f5d71ce.zip | |
Delete duplicate 'min' macro
* src/gmalloc.c (min): Delete duplicate macro. We import lisp.h
unconditionally, so it is always defined here.
Diffstat (limited to 'src/gmalloc.c')
| -rw-r--r-- | src/gmalloc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c index 3cb77b99997..fe6a0412a9b 100644 --- a/src/gmalloc.c +++ b/src/gmalloc.c | |||
| @@ -1277,10 +1277,6 @@ License along with this library. If not, see <https://www.gnu.org/licenses/>. | |||
| 1277 | The author may be reached (Email) at the address mike@ai.mit.edu, | 1277 | The author may be reached (Email) at the address mike@ai.mit.edu, |
| 1278 | or (US mail) as Mike Haertel c/o Free Software Foundation. */ | 1278 | or (US mail) as Mike Haertel c/o Free Software Foundation. */ |
| 1279 | 1279 | ||
| 1280 | #ifndef min | ||
| 1281 | #define min(a, b) ((a) < (b) ? (a) : (b)) | ||
| 1282 | #endif | ||
| 1283 | |||
| 1284 | /* Debugging hook for realloc. */ | 1280 | /* Debugging hook for realloc. */ |
| 1285 | static void *(*grealloc_hook) (void *, size_t); | 1281 | static void *(*grealloc_hook) (void *, size_t); |
| 1286 | 1282 | ||