1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +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 <string.h>
#include <errno.h>
#include <sys/types.h>
#include <unistd.h>
/* common */
#include "cmdline.h"