Debug: typo
[exim.git] / src / src / path_max.h
1 /*************************************************
2 *     Exim - an Internet mail transport agent    *
3 *************************************************/
4
5 /* Copyright (c) The Exim Maintainers 2024 */
6 /* See the file NOTICE for conditions of use and distribution. */
7 /* SPDX-License-Identifier: GPL-2.0-or-later */
8
9 /* This was in exim.h - but not all files needing it can include all of that. */
10 /* Needed by macros.h */
11 /* Some systems have PATH_MAX and some have MAX_PATH_LEN. */
12 #ifndef PATH_MAX
13 # ifdef MAX_PATH_LEN
14 #  define PATH_MAX MAX_PATH_LEN
15 # else
16 #  define PATH_MAX 4096
17 # endif
18 #endif
19