1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 17:30:06 +00:00

src/ar65/library.c: fix compilation on Windows

This commit is contained in:
Christian Groessler 2021-03-18 20:08:22 +01:00 committed by Oliver Schmidt
parent 358d750b3e
commit 9b05fe9982

View File

@ -36,8 +36,12 @@
#include <stdio.h>
#include <string.h>
#include <errno.h>
#if defined(_WIN32)
#include <process.h>
#else
#include <sys/types.h>
#include <unistd.h>
#endif
/* common */
#include "cmdline.h"