view src/build-msvctools/unistd.h @ 5534:372ea4c0afb2

Move of-ocs PKG_XXXX to inst dir and add break patch * src/of-ocs-3-break-fixes.patch, src/of-ocs-4-pkgadd-fixes.patch: new files * dist-files.mk: add ref to files
author John Donoghue <john.donoghue@ieee.org>
date Sun, 13 Sep 2020 08:15:14 -0400
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