fixes for a couple compile errors

This commit is contained in:
Reuben Dunnington 2023-08-21 11:50:42 -07:00
parent 94b9cb2bbf
commit 464a25c55d
Signed by: rdunnington
GPG Key ID: 4EC5290E704FD482
2 changed files with 9 additions and 8 deletions

View File

@ -313,8 +313,8 @@ void oc_runtime_env_init(oc_runtime_env* runtime)
#include "wasmbind/clock_api_bind_gen.c"
#include "wasmbind/core_api_bind_gen.c"
#include "wasmbind/gles_api_bind_gen.c"
#include "wasmbind/gles_api_bind_manual.c"
#include "wasmbind/gles_api_bind_gen.c"
#include "wasmbind/io_api_bind_gen.c"
#include "wasmbind/surface_api_bind_gen.c"

View File

@ -1,16 +1,17 @@
/************************************************************/ /**
*
* @file: lists.h
* @author: Martin Fouilleul
* @date: 22/11/2017
* @brief: Implements generic intrusive linked list and dynamic array
*
/************************************************************/ /**
*
* @file: lists.h
* @author: Martin Fouilleul
* @date: 22/11/2017
* @brief: Implements generic intrusive linked list and dynamic array
*
****************************************************************/
#ifndef __CONTAINERS_H_
#define __CONTAINERS_H_
#include "platform/platform_debug.h"
#include "util/macros.h"
#include "util/debug.h"
#ifdef __cplusplus
extern "C"