view src/build-msvctools/unistd.h @ 6213:5f64fb928091 release

build-gcc: Avoid library clash when calling msgfmt. * src/build-gcc-1-msgfmt.patch: Don't use libraries from the build tree when calling `msgfmt`. * dist-files.mk: Add patch to list.
author Markus Mützel <markus.muetzel@gmx.de>
date Fri, 06 May 2022 19:36:10 +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