Delete duplicate 'min' macro

* src/gmalloc.c (min): Delete duplicate macro.  We import lisp.h
unconditionally, so it is always defined here.
This commit is contained in:
Stefan Kangas 2025-01-19 17:15:20 +01:00
parent 4106fd28c7
commit f3b57fa519

View file

@ -1277,10 +1277,6 @@ License along with this library. If not, see <https://www.gnu.org/licenses/>.
The author may be reached (Email) at the address mike@ai.mit.edu,
or (US mail) as Mike Haertel c/o Free Software Foundation. */
#ifndef min
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif
/* Debugging hook for realloc. */
static void *(*grealloc_hook) (void *, size_t);