mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
src/ar65/library.c: fix compilation on Windows
This commit is contained in:
parent
358d750b3e
commit
9b05fe9982
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user