tools: Include limits.h for PATH_MAX.

PATH_MAX is used in FreeBSD-specific code in get_argv0_dir which
otherwise fails.
This commit is contained in:
Gerald Pfeifer 2023-01-28 00:39:39 +01:00 committed by Alexandre Julliard
parent 4e5fab6214
commit 004f367725

View file

@ -21,6 +21,7 @@
#ifndef __WINE_TOOLS_H
#define __WINE_TOOLS_H
#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>