mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00
Fix int-type compilation problem on redhat. (#472)
This commit is contained in:
parent
cf68cf743c
commit
a67a107e0e
2 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifndef __STDC_FORMAT_MACROS
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#endif
|
||||
#include <errno.h>
|
||||
#include <inttypes.h>
|
||||
#ifndef _WIN32
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#ifndef PLASMA_H
|
||||
#define PLASMA_H
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
@ -15,6 +14,8 @@
|
|||
#include "common.h"
|
||||
#include "format/common_generated.h"
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "utarray.h"
|
||||
#include "uthash.h"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue