diff options
| author | Christos Zoulas <christos@zoulas.com> | 2026-01-26 16:15:38 +0000 |
|---|---|---|
| committer | Christos Zoulas <christos@zoulas.com> | 2026-01-26 16:15:38 +0000 |
| commit | 626e47612a42d769d6082eef4f43fafd0da84d83 (patch) (diff) | |
| tree | 1538be9624169272788e4d273696b6f3de194859 | |
| download | tcsh-master.tar.gz | |
| previous commit | ec558d739eb81754af111958b0715e02f826a69f (Fix nls error message (Corinna Vinschen)) | |
| -rw-r--r-- | Fixes | [diff] [file] | 1 | ||||
| -rw-r--r-- | sh.func.c | [diff] [file] | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ + 47. Handle RLIMIT_AS on Cygwin (Corinna Vinschen) 46. Fix nls error message (Corinna Vinschen) 45. Typo fixes (spaette) 44. V6.24.16 - 2025-07-09 @@ -1859,7 +1859,7 @@ doumask(Char **v, struct command *c) # endif # endif /* SYSVREL > 3 && BSDLIMIT */ -# if (defined(__linux__) || defined(__GNU__) || defined(__GLIBC__)) +# if (defined(__linux__) || defined(__GNU__) || defined(__GLIBC__)) || defined(__CYGWIN__) # if defined(RLIMIT_AS) && !defined(RLIMIT_VMEM) # define RLIMIT_VMEM RLIMIT_AS # endif |
