view src/build-msvctools/unistd.h @ 7207:9ed6500e56d3 default tip @

maint: Merge release to default.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 17 May 2024 20:16:41 +0200
parents 8480924d2b85
children
line wrap: on
line source

/* Emulation of unistd.h for Visual C++. */

#ifndef __unistd_h__
#define __unistd_h__ 1

#include <direct.h>
#include <process.h>
#include <io.h>
#include <getopt.h>

#ifndef PATH_MAX
# define PATH_MAX 260
#endif

#endif