1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-28 22:30:12 +00:00

ar65: fix parallel builds by using a per-process temp file

This commit is contained in:
Christian Groessler 2021-02-16 22:19:34 +01:00 committed by Oliver Schmidt
parent 64449f0f54
commit 358d750b3e

View File

@ -36,6 +36,8 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <sys/types.h>
#include <unistd.h>
/* common */ /* common */
#include "cmdline.h" #include "cmdline.h"