Fix some header includes
This commit is contained in:
parent
6ae24c083d
commit
b2f5c81881
|
@ -17,6 +17,9 @@
|
|||
#ifndef __FIFO_BUFFER_H
|
||||
#define __FIFO_BUFFER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stddef.h>
|
||||
#include <boolean.h>
|
||||
#include "message_queue.h"
|
||||
#include "retroarch_logger.h"
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
#ifndef __RARCH_MSG_QUEUE_H
|
||||
#define __RARCH_MSG_QUEUE_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue