diff options
author | John Högberg <[email protected]> | 2017-09-11 10:09:15 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2017-09-11 10:09:15 +0200 |
commit | 01455c2e5397702a887cf194c1fa12f2461e6dda (patch) | |
tree | 53b5743d7d49c4d0fad9b2e41c8dfef0523bb245 /erts/emulator/beam/erl_nif.c | |
parent | 8893ad1594b9ea918ede8a791407f9cae8285278 (diff) | |
parent | a1601976d5a3eb8027a7f292b0071dd28688c51f (diff) | |
download | otp-01455c2e5397702a887cf194c1fa12f2461e6dda.tar.gz otp-01455c2e5397702a887cf194c1fa12f2461e6dda.tar.bz2 otp-01455c2e5397702a887cf194c1fa12f2461e6dda.zip |
Merge branch 'maint'
Diffstat (limited to 'erts/emulator/beam/erl_nif.c')
-rw-r--r-- | erts/emulator/beam/erl_nif.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/erts/emulator/beam/erl_nif.c b/erts/emulator/beam/erl_nif.c index c440ae287f..d3271a4560 100644 --- a/erts/emulator/beam/erl_nif.c +++ b/erts/emulator/beam/erl_nif.c @@ -67,14 +67,6 @@ #include <limits.h> #include <stddef.h> /* offsetof */ -#ifndef MAX -#define MAX(X, Y) ((X) > (Y) ? (X) : (Y)) -#endif - -#ifndef MIN -#define MIN(X, Y) ((X) < (Y) ? (X) : (Y)) -#endif - /* Information about a loaded nif library. * Each successful call to erlang:load_nif will allocate an instance of * erl_module_nif. Two calls opening the same library will thus have the same |