diff options
author | Roland McGrath <roland@gnu.org> | 1996-08-02 05:27:50 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-08-02 05:27:50 +0000 |
commit | e75154a665018d5756196275634704c95476ea6b (patch) | |
tree | 0c8f889a29304e0cc86611c629f1b620d16cf8a7 /sysdeps/unix/mk-local_lim.c | |
parent | 9ebb936d991a6e08da05e5a942465d64cac39f86 (diff) | |
download | glibc-e75154a665018d5756196275634704c95476ea6b.tar.gz glibc-e75154a665018d5756196275634704c95476ea6b.tar.xz glibc-e75154a665018d5756196275634704c95476ea6b.zip |
Remade for alpha-1.93 cvs/libc-960802
Diffstat (limited to 'sysdeps/unix/mk-local_lim.c')
-rw-r--r-- | sysdeps/unix/mk-local_lim.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sysdeps/unix/mk-local_lim.c b/sysdeps/unix/mk-local_lim.c index c9a1d3dfb8..b2212ee46d 100644 --- a/sysdeps/unix/mk-local_lim.c +++ b/sysdeps/unix/mk-local_lim.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -92,6 +92,13 @@ static struct param params[] = { "PATH_MAX", PATH_MAX }, #endif +#if !defined (SYMLOOP_MAX) && defined (MAXSYMLINKS) +#define SYMLOOP_MAX MAXSYMLINKS +#endif +#ifdef SYMLOOP_MAX + { "SYMLOOP_MAX", SYMLOOP_MAX }, +#endif + { NULL, 0 } }; |