mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 18:13:32 +08:00
16 lines
265 B
C
16 lines
265 B
C
/* See LICENSE of license details. */
|
|
#ifndef _NUCLEI_SYS_STUB_H
|
|
#define _NUCLEI_SYS_STUB_H
|
|
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
|
|
void write_hex(int fd, unsigned long int hex);
|
|
|
|
static inline int _stub(int err)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
#endif /* _NUCLEI_SYS_STUB_H */
|