diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-06-17 15:14:05 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-06-17 15:14:05 +0200 |
commit | ca38eff28015f376c020b4dfad5351e45be8d090 (patch) | |
tree | a3f3d73f14ffd869701522822553794c4adad5d2 /support/temp_file.c | |
parent | cb65d6610445a95f78b958af44f52746b4e36b24 (diff) | |
download | glibc-ca38eff28015f376c020b4dfad5351e45be8d090.zip glibc-ca38eff28015f376c020b4dfad5351e45be8d090.tar.gz glibc-ca38eff28015f376c020b4dfad5351e45be8d090.tar.bz2 |
support: Include <limits.h> for NAME_MAX use in temp_file.c
Diffstat (limited to 'support/temp_file.c')
-rw-r--r-- | support/temp_file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/temp_file.c b/support/temp_file.c index 97a7dc2..28a0043 100644 --- a/support/temp_file.c +++ b/support/temp_file.c @@ -27,6 +27,7 @@ #include <support/support.h> #include <errno.h> +#include <limits.h> #include <paths.h> #include <stdio.h> #include <stdlib.h> |