mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
20 lines
400 B
C
20 lines
400 B
C
// Generic platform configuration file
|
|
|
|
#ifndef __PLATFORM_CONF_H__
|
|
#define __PLATFORM_CONF_H__
|
|
|
|
#include "buf.h"
|
|
#include "sermux.h"
|
|
#include "legc.h"
|
|
#include "platform.h"
|
|
#include "auxmods.h"
|
|
#include "elua_int.h"
|
|
#include "lualib.h"
|
|
|
|
#include ELUA_CPU_HEADER
|
|
#include ELUA_BOARD_HEADER
|
|
#include "platform_generic.h" // generic platform header (include whatever else is missing here)
|
|
|
|
#endif
|
|
|