Skip to content

Commit

Permalink
[fix] Add system includes for stdio and stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
timhartley committed Nov 28, 2019
1 parent 84673cb commit dbf4efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions com.oracle.max.vm.native/substrate/barrier.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
* we use that mechanism to synchronise instruction streams on multi-cores.
*/

#include <stdlib.h>
#include <stdio.h>
#include "log.h"
#include "os.h"
#if os_LINUX
#include "isa.h"
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/syscall.h>
#include <linux/membarrier.h>
Expand Down

0 comments on commit dbf4efd

Please sign in to comment.