sapling/eden/scm/edenscm/mercurial/cext
Anna Kukliansky 885f172d83 dont define MIN if it is allready defined
Summary:
to overcome this error:
```
stderr: In file included from eden/scm/edenscm/mercurial/cext/osutil.c:44:
eden/scm/edenscm/mercurial/cext/util.h:39:9: error: 'MIN' macro redefined [-Werror,-Wmacro-redefined]
#define MIN(a, b) (((a) < (b)) ? (a) : (b))

buck-out/dev/cells/fbsource/gen/03598924/xplat/toolchains/minimal_xcode/MacOSX11.1.sdk__/MacOSX11.1.sdk/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.1.sdk/usr/include/sys/param.h:215:9: note: previous definition is here
#define MIN(a, b) (((a)<(b))?(a):(b))
```

Reviewed By: andrewjcg

Differential Revision: D27137302

fbshipit-source-id: c0ecdfe41e4f2215fb6b886a350d1e4e0224abd5
2021-03-18 04:09:20 -07:00
..
__init__.py remediation of S205607 2020-07-17 17:16:13 -07:00
base85.c Apply clang-format update fixes 2021-01-10 10:06:29 -08:00
base85.pyi start adding type annotations for the cext code 2020-02-21 13:54:19 -08:00
bdiff.c Apply clang-format update fixes 2021-01-10 10:06:29 -08:00
bdiff.pyi start adding type annotations for the cext code 2020-02-21 13:54:19 -08:00
charencode.c use absolute includes for the native cext modules 2020-02-19 13:05:06 -08:00
charencode.h use absolute includes for the native cext modules 2020-02-19 13:05:06 -08:00
dirs.c use absolute includes for the native cext modules 2020-02-19 13:05:06 -08:00
manifest.c use absolute includes for the native cext modules 2020-02-19 13:05:06 -08:00
mpatch.c Apply clang-format update fixes 2021-01-10 10:06:29 -08:00
mpatch.pyi start adding type annotations for the cext code 2020-02-21 13:54:19 -08:00
osutil.c workaround const qualifier discard 2021-03-18 02:38:56 -07:00
osutil.pyi start adding type annotations for the cext code 2020-02-21 13:54:19 -08:00
parsers.c Apply clang-format update fixes 2021-01-10 10:06:29 -08:00
parsers.pyi add type annotations to dirstate.py 2020-08-11 21:45:04 -07:00
pathencode.c py3: fix Mononoke Python 3 test failures 2020-09-09 18:31:04 -07:00
README.md Move fb-mercurial sources into an eden/scm subdirectory. 2019-11-13 16:04:48 -08:00
revlog.c Daily arc lint --take CLANGFORMAT 2021-02-26 04:01:44 -08:00
util.h dont define MIN if it is allready defined 2021-03-18 04:09:20 -07:00
xdiff.c xdiff: renamed third-party xdiff functions 2020-07-09 01:20:32 -07:00
xdiff.pyi start adding type annotations for the cext code 2020-02-21 13:54:19 -08:00

cext

Native code used by core Mercurial (not extensions), that depends on Python, lives here.

See also hgext/extlib/README.md, lib/README.md.